Skip to content

Commit

Permalink
Allow Tempo reads from sampled spans topic
Browse files Browse the repository at this point in the history
Ticket: DENA-1126
  • Loading branch information
matthewhughes-uw committed Dec 17, 2024
1 parent 1121c7e commit 7bb3af0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev-aws/otel/otel.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ module "otel_collector_web" {
}

module "tempo_distributor" {
source = "../../modules/tls-app"
consume_topics = [kafka_topic.otlp_spans.name]
source = "../../modules/tls-app"
consume_topics = [
kafka_topic.otlp_spans.name,
kafka_topic.otlp_sampled_spans.name,
]
consume_groups = ["processor-tempo"]
cert_common_name = "otel/tempo-distributor"
}
Expand Down

0 comments on commit 7bb3af0

Please sign in to comment.