File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,15 @@ breadcrumbs manually:
97
97
This should effectively enable Sentry-Python to work with `` asyncio `` under
98
98
that Python version.
99
99
100
+
101
+ ## PII
102
+
103
+ Currently Sentry-Python does not send any personally-identifiable user data
104
+ with events by default. You need to explicitly enable this behavior with the
105
+ `` send_default_pii `` option passed to `` init `` :
106
+
107
+ init(..., send_default_pii=True)
108
+
100
109
## Integrations
101
110
102
111
Head over to [ the other pages] ( ./docs/ ) to check out integrations, which use
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ In your ``settings.py``:
13
13
14
14
* Personally identifiable information (such as user ids, usernames,
15
15
cookies, authorization headers, ip addresses) is excluded unless
16
- `` send_default_pii `` is set to `` true `` . See `` README.md `` , section "PII"
16
+ `` send_default_pii `` is set to `` True `` . See `` README.md `` , section "PII"
17
17
18
18
* Request data is attached to all events.
19
19
You can’t perform that action at this time.
0 commit comments