-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat(protocol): Add transaction_info to events [INGEST-1427] #1330
Conversation
please also add a statsd metric or whatever else we need to be able to view aggregates of this data |
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.
+1 for adding a statsd metric right away.
* master: fix: Clippy lints (#1329)
a9db3b4
to
093805f
Compare
|
||
/// The unmodified transaction name as obtained by the source. | ||
/// | ||
/// This value will only be set if the transaction name was modified during event processing. |
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.
actually, don't we have _meta for original data?
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.
In the DACI it was decided not to use _meta to make the information more accessible to the product.
093805f
to
dab1d3e
Compare
relay-server/src/actors/envelopes.rs
Outdated
|
||
metric!( | ||
counter(RelayCounters::EventTransactionSource) += 1, | ||
source = &source.to_string() |
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.
Do we want to tag this by platform and/or SDK version?
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 a great suggestion, going to add this before merging.
2ae739a
to
fdc51c9
Compare
Implements
transaction_info
as documented in getsentry/develop#624 and adds theevent.transaction_source
metric to measure how often each source occurs in practice.Requires #1329