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
A list of string prefixes of module names that belong to the app. This option takes precedence over `in_app_exclude`.
147
147
148
148
Sentry differentiates stack frames that are directly related to your application ("in application") from stack frames that come from other packages such as the standard library, frameworks, or other dependencies. The application package is automatically marked as `inApp`. The difference is visible in [sentry.io](https://sentry.io), where only the "in application" frames are displayed by default.
A list of string prefixes of module names that do not belong to the app, but rather to third-party packages. Modules considered not part of the app will be hidden from stack traces by default.
155
155
156
156
This option can be overridden using <PlatformIdentifiername="in_app_include" />.
List of integrations to enable in addition to [auto-enabling integrations](/platforms/python/integrations). This setting can be used to override the default config options for a specific auto-enabling integration or to add an integration that is not auto-enabled.
List of integrations that will be disabled. This setting can be used to explicitly turn off specific [auto-enabling](/platforms/python/integrations/#available-integrations) or [default](/platforms/python/integrations/default-integrations/) integrations.
207
207
</SdkOption>
@@ -250,7 +250,7 @@ The callback typically gets a second argument (called a "hint") which contains t
250
250
251
251
Transports are used to send events to Sentry. Transports can be customized to some degree to better support highly specific deployments.
Switches out the transport used to send events. How this works depends on the SDK. It can, for instance, be used to capture events for unit-testing or to send it through some more complex setup that requires proxy authentication.
256
256
@@ -272,7 +272,7 @@ Configures a separate proxy for outgoing HTTPS requests. This value might not be
A dict containing additional proxy headers (usually for authentication) to be forwarded to `urllib3`'s [`ProxyManager`](https://urllib3.readthedocs.io/en/1.24.3/reference/index.html#urllib3.poolmanager.ProxyManager).
278
278
@@ -349,7 +349,7 @@ If <PlatformIdentifier name="trace_propagation_targets" /> is not provided, trac
0 commit comments