Skip to content

feat(eap): Produce spans to the items topic #4735

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- Remove threads with 1 non-idle sample in profiling chunks. ([#4694](https://github.com/getsentry/relay/pull/4694))
- Migrate all Rust workspace crates to edition 2024. ([#4705](https://github.com/getsentry/relay/pull/4705))
- Produce logs to the items topic. ([#4707](https://github.com/getsentry/relay/pull/4707))
- Produce spans to the items topic. ([#4735](https://github.com/getsentry/relay/pull/4735))

## 25.4.0

Expand Down
2 changes: 1 addition & 1 deletion relay-kafka/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ define_topic_assignments! {
replay_recordings: (KafkaTopic::ReplayRecordings, "ingest-replay-recordings", "Recordings topic name."),
ourlogs: (KafkaTopic::OurLogs, "snuba-ourlogs", "Logs from our logs product."),
monitors: (KafkaTopic::Monitors, "ingest-monitors", "Monitor check-ins."),
spans: (KafkaTopic::Spans, "snuba-spans", "Standalone spans without a transaction."),
spans: (KafkaTopic::Spans, "ingest-spans", "Standalone spans without a transaction."),
feedback: (KafkaTopic::Feedback, "ingest-feedback-events", "Feedback events topic."),
items: (KafkaTopic::Items, "snuba-items", "Items topic."),
}
Expand Down
Loading
Loading