-
-
Notifications
You must be signed in to change notification settings - Fork 444
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
Allow user to hook into Breadcrumb in SentryInstrumentation #3413
Comments
Hey @ooraini thanks for opening this issue. We're thinking this through and our current solution would be to add a If yes, what GraphQL data would you need? Just For this to work you'd have to register a |
Hi @adinauer,
As long as I can access the
The
👍🏻 |
Hey @ooraini, just coming back from an extended vacation, we'll discuss internally whether we want to include more changes in the 8.0 release. I'm hoping we'll do a beta soon and then a release some time after that. Ideally I'd like to avoid backporting and focus on the new major instead. If it takes too long we can revisit. |
We're closing in on |
All good, I tried the beta release and it's working as expected. Thanks! |
Problem Statement
I want to add more data into the breadcrumbs generated by
SentryInstrumentation
,. As a use case, I want to add any parameter namedid
when resolving any field:user(id: "...")
. I could use context data, but with nesting it will not work. Example breadcrumb from sentry.io:There are two places where breadcrumbs are used in SentryInstrumentation: beginExecuteOperation and instrumentDataFetcher. I'm not sure about beginExecuteOperation, but instrumentDataFetcher is mostly where I want to enrich the breadcrumb.
Solution Brainstorm
Nested class in SentryInstrumentation
The text was updated successfully, but these errors were encountered: