From f70b37f03394c5513181b23cdff46e8acb983448 Mon Sep 17 00:00:00 2001 From: Lyn Nagara Date: Wed, 27 Mar 2024 16:47:44 -0700 Subject: [PATCH 1/2] fix: Fix kafka topic default should be ingest-performance-metrics not ingest-generic metrics INC-696 --- relay-kafka/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay-kafka/src/config.rs b/relay-kafka/src/config.rs index afe6a05cdc..802e7b1b94 100644 --- a/relay-kafka/src/config.rs +++ b/relay-kafka/src/config.rs @@ -102,7 +102,7 @@ pub struct TopicAssignments { #[serde(alias = "metrics", alias = "ingest-metrics")] pub metrics_sessions: TopicAssignment, /// Topic name for all other kinds of metrics. Defaults to the assignment of `metrics`. - #[serde(alias = "metrics_transactions", alias = "ingest-generic-metrics")] + #[serde(alias = "metrics_transactions", alias = "ingest-performance-metrics")] pub metrics_generic: TopicAssignment, /// Stacktrace topic name pub profiles: TopicAssignment, From 9449375f4312c60aaba8db1c566fe302b46b4c67 Mon Sep 17 00:00:00 2001 From: Joris Bayer Date: Thu, 28 Mar 2024 08:16:47 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c18567f19..27cb048836 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ - Extract metrics from transaction spans. ([#3273](https://github.com/getsentry/relay/pull/3273), [#3324](https://github.com/getsentry/relay/pull/3324)) - Implement volume metric stats. ([#3281](https://github.com/getsentry/relay/pull/3281)) - Scrub transactions before enforcing quotas. ([#3248](https://github.com/getsentry/relay/pull/3248)) -- Kafka topic config supports default topic names as keys. ([#3282](https://github.com/getsentry/relay/pull/3282)) +- Kafka topic config supports default topic names as keys. ([#3282](https://github.com/getsentry/relay/pull/3282), [#3350](https://github.com/getsentry/relay/pull/3350)) - Set all span tags on the transaction span. ([#3310](https://github.com/getsentry/relay/pull/3310)) - Collect duration for all spans. ([#3322](https://github.com/getsentry/relay/pull/3322)) - Add `project_id` as part of the span Kafka message headers. ([#3320](https://github.com/getsentry/relay/pull/3320))