Skip to content
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

fix: store event ID (it is not in tags) #6291

Closed
wants to merge 1 commit into from
Closed

Conversation

colin-sentry
Copy link
Member

For some reason event ID is sent normalized and not in any _tags fields, pull it out explicitly.

@colin-sentry colin-sentry requested a review from a team as a code owner September 11, 2024 23:25
@@ -133,6 +133,9 @@ impl From<FromSpanMessage> for EAPSpan {
attr_num_buckets[(fnv_1a(k.as_bytes()) as usize) % attr_num_buckets.len()]
.insert(k.clone(), v);
};
if let Some(event_id) = from.event_id {
insert_string("sentry.event_id".into(), event_id.to_string())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you remove dashes from it?

@mcannizz
Copy link
Member

What's the motivation behind this change?

@colin-sentry
Copy link
Member Author

colin-sentry commented Sep 12, 2024

Needed for trace view, I'll close this since @mitsuhiko says "migrating entirely away from event id" is in scope

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants