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
11 changes: 4 additions & 7 deletions docs/platforms/powershell/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Turns debug mode on or off. If debug is enabled SDK will attempt to print out us

</SdkOption>

<SdkOption name="DiagnosticLevel" type="enum">
<SdkOption name="DiagnosticLevel" type="enum" defaultValue="debug">

Enabling `debug` mode makes the SDK generate as much diagnostic data as possible. However, if you'd prefer to lower the verbosity of the Sentry SDK diagnostics logs, configure this option to set the appropriate level:

Expand Down Expand Up @@ -88,7 +88,7 @@ The maximum number of [envelopes](https://develop.sentry.dev/sdk/data-model/enve

</SdkOption>

<SdkOption name="AttachStacktrace" type="bool">
<SdkOption name="AttachStacktrace" type="bool" defaultValue="true">

When enabled, stack traces are automatically attached to all messages logged. Stack traces are always attached to exceptions; however, when this option is set, stack traces are also sent with messages. This option, for instance, means that stack traces appear next to all log messages.

Expand All @@ -105,14 +105,11 @@ If this flag is enabled, certain personally identifiable information (PII) is ad
If you are using Sentry in your mobile app, read our [frequently asked questions about mobile data privacy](/security-legal-pii/security/mobile-privacy/) to assist with Apple App Store and Google Play app privacy details.

</Alert>

This option is turned off by default.

If you enable this option, be sure to manually remove what you don't want to send using our features for managing [_Sensitive Data_](../../data-management/sensitive-data/).

</SdkOption>

<SdkOption name="SendClientReports" type="bool">
<SdkOption name="SendClientReports" type="bool" defaultValue="true">

Set this boolean to `false` to disable sending of client reports. Client reports are a protocol feature that let clients send status reports about themselves to Sentry. They are currently mainly used to emit outcomes for events that were never sent.

Expand Down Expand Up @@ -163,7 +160,7 @@ Controls how many seconds to wait before shutting down. Sentry SDKs send events

## Tracing Options

<SdkOption name="TracesSampleRate" type="float">
<SdkOption name="TracesSampleRate" type="float" defaultValue="null">

A number between `0` and `1`, controlling the percentage chance a given transaction will be sent to Sentry. (`0` represents 0% while `1` represents 100%.) Applies equally to all transactions created in the app. Either this or <PlatformIdentifier name="TracesSampler" /> must be defined to enable tracing.

Expand Down
Loading