-
Notifications
You must be signed in to change notification settings - Fork 94
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
ref(general): Do not default transactions to level error #585
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we'd have to test locally if this breaks later stages of the pipeline
thanks for taking this, it's been in my personal backlog for a while
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙏 Thx
@untitaker you were right, Sentry unconditionally writes a @HazAT I'm defaulting to |
so if it's about the tag can't we get rid of the tag, or never set it if it's none? |
Yes, but I'd like to do this as a follow-up in Sentry. @untitaker @HazAT would you prefer this to be fixed in Sentry first and then we go back to the prior patch? I personally like that it has a I forgot to update tests, so depending on your decision I'll either roll back or fix tests. |
That I agree with but I don't think we need to solve it this way. Let the discover team figure out how to query for that. |
92aedb9
to
64d26f7
Compare
event.level.get_or_insert_with(|| match event_type { | ||
EventType::Transaction => Level::Info, | ||
_ => Level::Error, | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great 👍
@jan-auer @untitaker It's a non-issue of whether or not transactions has a The data team might care about this change as it could impact their work. I'm unsure if they rely on this field/tag to make certain assumptions about transactions events. |
In transactions, the
error
event level does not make sense. Instead, assigninfo
to transactions.