-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Scopes are leaking in NestJS requests #15940
Comments
I'm trying to reproduce this on a fresh NestJS project and couldn't reproduce it. Please don't spend time on it yet. Will keep you updated. |
Hey @sagrawal31 thanks for letting us know! I'll close this issue for now to maintain a clean issue feed but please feel free to ping me whenever you have a working reproduction and then we'll reopen this. Thanks! |
Thank you @Lms24. I spent my last 2 days converting my test NestJS project as similar (like wrapping to promise, calling Sentry at almost the same places, etc.) to our production code, but it wasn't helping. So, I took a different approach. I started removing modules and code one by one from our vast production code and started testing the leak, and I'm glad I succeeded. Here is a fresh NestJS code to reproduce the same: https://github.com/letscooee/nestjs-sentry-test Steps to reproduce
Expected behaviourThe second request should not leak on the Sentry request Actual behaviourThe tag and user are leaking to the second request as well. Workaround I figuredWrapping the Actual fix that I don't understandIf you check my last commit (letscooee/nestjs-sentry-test@2a99b2f), I moved the |
Hey @sagrawal31 thanks a lot for the great reproduction! I was able to reproduce it instantly. You already correctly identified that you get scope leakage because of Sentry initializing too late in the game. Unfortunately, this is expected behaviour or rather, an unfortunate consequence of how OpenTelemetry instruments NodeJS applications. Fundamentally the thing that's failing is that our SDK (or the Otel SDK under the hood) needs to instrument To instrument libraries like That's the reason why our docs clearly state that the SDK must be initialized first thing in your Note, if you're transpiling to ESM (i.e. your built code has |
So to conclude, this isn't a bug but unfortunate behaviour. I recommend following our docs for setup and avoiding a late-init of Sentry. If you cannot at all avoid this, there's a compromise to preload the instrumentation part of the SDK and only init the SDK itself later. Follow this guide for it. Let me know if you have any other questions. |
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/nestjs
SDK Version
9.10.1
Framework Version
Nest 10.3.10
Link to Sentry event
No response
Reproduction Example/SDK Setup
No response
Steps to Reproduce
Expected Result
The tracked should not have any custom tag/context or user.
Actual Result
The tracked error have the tags/context/user from the previous request.
The text was updated successfully, but these errors were encountered: