Skip to content
Merged
Changes from all commits
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
10 changes: 10 additions & 0 deletions docs/platforms/apple/common/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,16 @@ Grouping in Sentry is different for events with stack traces and without. As a r

</SdkOption>

<SdkOption name="attachAllThreads" type="bool" defaultValue="false" availableSince="9.9.0">

When enabled, all threads are attached with full stack traces to all captured events. This requires briefly suspending all threads to collect their stack traces. When disabled (the default), only the current thread gets a stack trace.

This option requires `attachStacktrace` to also be enabled for it to have any effect.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This option requires `attachStacktrace` to also be enabled for it to have any effect.
This option also requires `attachStacktrace` to be enabled for it to have any effect.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I though it was already approved by the docs teams, I might have confused it with another PR.
Let me open a new one with this fix

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ready: #17273


You can also override this option on a per-call basis by passing the `attachAllThreads` parameter to `SentrySDK.capture(event:)`, `SentrySDK.capture(error:)`, `SentrySDK.capture(exception:)`, or `SentrySDK.capture(message:)`.

</SdkOption>

<SdkOption name="enableSigtermReporting" type="bool" availableSince="8.27.0">

_(New in [sentry-cocoa version 8.27.0](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8270))_
Expand Down
Loading