-
-
Notifications
You must be signed in to change notification settings - Fork 435
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
Finish WebFlux transaction before popping scope #2724
Finish WebFlux transaction before popping scope #2724
Conversation
…roblems with popScope and transaction.finish
Performance metrics 🚀
|
Revision | Plain | With Sentry | Diff |
---|---|---|---|
46b1782 | 387.72 ms | 458.74 ms | 71.02 ms |
1707044 | 338.80 ms | 384.79 ms | 46.00 ms |
App size
Revision | Plain | With Sentry | Diff |
---|---|---|---|
46b1782 | 1.72 MiB | 2.28 MiB | 570.44 KiB |
1707044 | 1.72 MiB | 2.28 MiB | 570.44 KiB |
Previous results on branch: fix/finish-webflux-transaction-before-scope-pop
Startup times
Revision | Plain | With Sentry | Diff |
---|---|---|---|
cc386a9 | 339.47 ms | 460.14 ms | 120.67 ms |
1ba2a69 | 304.45 ms | 353.29 ms | 48.84 ms |
App size
Revision | Plain | With Sentry | Diff |
---|---|---|---|
cc386a9 | 1.72 MiB | 2.28 MiB | 570.44 KiB |
1ba2a69 | 1.72 MiB | 2.28 MiB | 570.44 KiB |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #2724 +/- ##
============================================
- Coverage 81.13% 81.11% -0.02%
- Complexity 4449 4451 +2
============================================
Files 345 343 -2
Lines 16402 16402
Branches 2226 2227 +1
============================================
- Hits 13307 13304 -3
- Misses 2168 2169 +1
- Partials 927 929 +2
☔ View full report in Codecov by Sentry. |
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.
Besides the questions about getting the Hub in SentryWebFilterWithThreadLocalAccessor
, LGTM
__ -> | ||
doFinally( | ||
serverWebExchange, | ||
Sentry.getCurrentHub(), |
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.
Does Sentry.getCurrentHub()
work correctly in this filter method? ReactorUtils.withSentryNewMainHubClone
does not set the current hub, so shouldn't we get the hub from the context?
Or is this somehow handled by reactor behind the scenes?
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.
ThreadLocal
is set via ThreadLocalAccessor
and propagated via reactor context.
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.
Just tested again with debugger, works as expected (i.e. uses the correct hub).
serverWebExchange, | ||
Sentry.getCurrentHub(), | ||
transactionContainer.transaction)) | ||
.doOnError(e -> doOnError(transactionContainer.transaction, e)) | ||
.doFirst( | ||
() -> { | ||
doFirst(serverWebExchange, Sentry.getCurrentHub()); |
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.
See comment about Sentry.getCurrentHub()
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.
same as above
.doFirst( | ||
() -> { | ||
doFirst(serverWebExchange, Sentry.getCurrentHub()); | ||
transactionContainer.transaction = | ||
maybeStartTransaction(Sentry.getCurrentHub(), serverWebExchange.getRequest()); |
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.
See comment about Sentry.getCurrentHub()
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.
same as above
📜 Description
Merge
SentryWebTracingFilter
intoSentryWebFilter
to avoid ordering problems withpopScope
andtransaction.finish
.💡 Motivation and Context
Fixes #2700
💚 How did you test it?
📝 Checklist
sendDefaultPII
is enabled.🔮 Next steps