Why does module take precedence over filename while grouping issues? #5888
Unanswered
Lakshay-Sood
asked this question in
Q&A
Replies: 1 comment
-
So this is hardcoded into our grouping config: https://github.com/getsentry/sentry/blob/1e5966cff9cbdcab2160654500b6f33f387ccc4e/src/sentry/grouping/strategies/newstyle.py#L310-L316, but I'm going to ask around why this is the case. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sentry Project details
fingerprinting rule is set to default
stack trace rules is set to
family:native,javascript max-frames=1
Issue faced
The sentry issue grouping based on the first frame (due to specified stack trace rules) of stack trace only considers the module name.

But that exact frame when looked at all values of the stack trace, we find filename mentioned but for some reason it is not taken into consideration while grouping issues due to the below highlighted message

(module takes precedence)
Expectation
The use case that we have requires us to have issue grouping based on filename and not modulename.
Is there a way to give precedence to filename over modulename? Or is there any other way through which this use case can be satisfied?
Beta Was this translation helpful? Give feedback.
All reactions