Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ When you enable <PlatformLink to="/tracing">tracing</PlatformLink>, which is dis

## Request Query String

When tracing is enabled, the `http.query` span attribute captures the query string of outgoing HTTP requests and is **always sent to Sentry**. Depending on your application, this could contain PII data.
The full request query string of outgoing HTTP requests is **always sent to Sentry**. Depending on your application, this could contain PII data.

Please note that `sendDefaultPii` is not considered for a request query string. We recommend utilizing your own redactions in `beforeSend` or similar hooks.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ The `inproc` backend stack walks solely in the client and thus only sends the re

## Request Query String

The `url.query` span attribute captures the query string of HTTP requests and is **always sent to Sentry** when HTTP tracing is enabled. Depending on your application, this could contain PII data.
The full request query string of HTTP requests is **always sent to Sentry**. Depending on your application, this could contain PII data.

Please note that there is no PII flag that gates the request query string. We recommend utilizing your own redactions in the `before_send` callback or similar hooks.
Loading