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
When viewing a stacktrace in Sentry, frames are marked as either in_app or not in_app. Non-in-app frames are collapsed by default. The original in_app decision comes from the SDK; however, at the moment Sentry can't rely on the in_app decision from the SDK and has rules for overriding it.
Two things we can do about this:
On the Sentry side, remove the redundant checks that set a frame as not in-app if the package is coming from site-packages or dist-packages. We already check this on the SDK side. Having this rule on the server side means that it sometimes overrides a higher prio decision (e.g., the user explicitly set their in_app_include to include the module).
When viewing a stacktrace in Sentry, frames are marked as either
in_app
or notin_app
. Non-in-app frames are collapsed by default. The originalin_app
decision comes from the SDK; however, at the moment Sentry can't rely on thein_app
decision from the SDK and has rules for overriding it.Two things we can do about this:
site-packages
ordist-packages
. We already check this on the SDK side. Having this rule on the server side means that it sometimes overrides a higher prio decision (e.g., the user explicitly set theirin_app_include
to include the module).in_app
values and fix the underlying issues. Tracked here: Improvein_app
detection sentry-python#3682The text was updated successfully, but these errors were encountered: