You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(core): Add ignoreSentryInternalFrames option to thirdPartyErrorFilterIntegration (#18632)
Some users get flooded by third party errors despite having set their
third party error filtering to
`"drop-error-if-contains-third-party-frames"`. This comes from the fact
that often the stacktrace includes our internal wrapper logic as last
trace in the stack.
With this PR we're trying to work around this by specifically ignoring
these frames with a new opt-in mechanism. Marked this as experimental,
so users will know this option might lead to errors being misclassified.
- Adds a new experimental option
`experimentalExcludeSentryInternalFrames` to the
`thirdPartyErrorFilterIntegration`
- Once enabled we apply a strict filter for frames to detect our
internal wrapping logic and filter them out so they do not misclassify
injected code as internal errors.
Closes#13835
0 commit comments