Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/platforms/python/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,22 @@ This option is on by default.

</ConfigKey>

<ConfigKey name="add-full-stack">

When capturing errors, the Sentry stack traces only contain the frames from when an error happens. If this option is enabled (set to `True`) all frames from the beginning of the execution will be added to the stack trace sent to Sentry.

Default value is `False`.

</ConfigKey>

<ConfigKey name="max-stack-frames">

This option limits the number of stack frames that will be captured. Limiting is only applied if `add_full_stack` is enabled.

Default value is `100`.

</ConfigKey>

<ConfigKey name="server-name">

This option can be used to supply a "server name." When provided, the name of the server is sent along and persisted in the event. For many integrations, the server name actually corresponds to the device hostname, even in situations where the machine is not actually a server.
Expand Down
Loading