-
-
Notifications
You must be signed in to change notification settings - Fork 161
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
anyhow errors are grouped incorrectly #745
Comments
Hey @danechitoaie, could you try scrolling to the bottom of the issue page? There will be a section you can expand called "Event Grouping Information" which will give you more information around this. |
Thanks for adding more information @danechitoaie ! What happens here is that anyhow errors all have empty stack traces which causes them to be all grouped together as they all have the same (empty) stack trace. I think the proper solution, which doesn't require Please note that this could possibly break your grouping for other issues as they might be reported with a different stack trace when the flag is enabled |
Environment
Sentry 0.36.0
Any idea would could cause different errors logged from different parts of the app with different messages (using
anyhow::anyhow!()
) to be incorrectly grouped?See the above print screen.
Why is that error grouped with the others when it's different error.
One was logged with
and the other with
Can this be because both errors are anyhow errors just with different messages? And somehow they have same fingerprint and Sentry groups them by that?
Would me setting a custom fingerprint help?
The text was updated successfully, but these errors were encountered: