diff --git a/platform-includes/configuration/config-intro/powershell.mdx b/platform-includes/configuration/config-intro/powershell.mdx index 7323eadbe359c..66987bc929b89 100644 --- a/platform-includes/configuration/config-intro/powershell.mdx +++ b/platform-includes/configuration/config-intro/powershell.mdx @@ -21,5 +21,8 @@ Start-Sentry { # This option will enable Sentry's tracing features. You still need to start transactions and spans. # Example sample rate for your transactions: captures 10% of transactions $_.TracesSampleRate = 0.1 + + # If you'd like to include data that potentially includes PII, such as Machine Name + $_.SendDefaultPii = true } ```