-
Notifications
You must be signed in to change notification settings - Fork 93
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
feat(suspect-spans): Add span exclusive time #1061
Conversation
This change adds the computation for the span's exclusive time if it is enabled. The span's exclusive time can be understood as the amount of time spent in this span excluding the time spent in any immediate children.
@Zylphrex will you be adding an E2E integration test for this PR? |
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 looks great overall, thanks for the thorough patch.
A few comments below.
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.
Looks great, thanks for addressing the comments. Good to merge once TimeInterval
is deduplicated.
Please add a changelog entry in the "Internal" section.
Good to merge, please view both of my comments as optional. |
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.
👍
Following up with #1061, this change adds the exclusive time calculation for the root span of a transaction.
Following up with #1061, this change adds the exclusive time calculation for the root span of a transaction.
This change adds the computation for the span's exclusive time if it is enabled.
The span's exclusive time can be understood as the amount of time spent in this
span excluding the time spent in any immediate children.