Skip to content

Commit 84b74d6

Browse files
authored
fix(python): Fix typo, add send_default_pii=True to snippet (#12685)
1 parent 72dfb19 commit 84b74d6

File tree

1 file changed

+4
-1
lines changed
  • platform-includes/configuration/config-intro

1 file changed

+4
-1
lines changed

platform-includes/configuration/config-intro/python.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ sentry_sdk.init(
1010
debug=True,
1111
# Set traces_sample_rate to 1.0 to capture 100%
1212
# of transactions for tracing.
13-
tracees_sample_rate=1.0,
13+
traces_sample_rate=1.0,
14+
# Add request headers and IP for users,
15+
# see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info
16+
send_default_pii=True,
1417

1518
# By default the SDK will try to use the SENTRY_RELEASE
1619
# environment variable, or infer a git commit

0 commit comments

Comments
 (0)