From e51caf5fe3047e6ff285abeab69f9f107ca3788b Mon Sep 17 00:00:00 2001 From: Alexander Dinauer Date: Wed, 13 May 2026 20:38:35 +0200 Subject: [PATCH] docs: Add missing query string PII clarifications Clarify that request query strings are not gated by the platform PII option on Android, React Native, Rust, and Unity docs. This keeps existing query string data-collected pages aligned with the parent PR. Co-Authored-By: Claude --- docs/platforms/android/data-management/data-collected.mdx | 2 ++ docs/platforms/react-native/data-management/data-collected.mdx | 2 ++ docs/platforms/rust/common/data-management/data-collected.mdx | 2 ++ docs/platforms/unity/data-management/data-collected.mdx | 2 ++ 4 files changed, 8 insertions(+) diff --git a/docs/platforms/android/data-management/data-collected.mdx b/docs/platforms/android/data-management/data-collected.mdx index bbdbecbf2e5da..d118ce0e0960f 100644 --- a/docs/platforms/android/data-management/data-collected.mdx +++ b/docs/platforms/android/data-management/data-collected.mdx @@ -42,6 +42,8 @@ The full request URL of outgoing and incoming HTTP requests is **always sent to The full request query string of outgoing and incoming 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. + ## Request and Response Bodies By default, no request or response bodies are sent to Sentry from the Android SDK. If you want to collect request or response bodies in recorded user sessions, see the Session Replay [network detail configuration docs](/platforms/android/session-replay/configuration/). diff --git a/docs/platforms/react-native/data-management/data-collected.mdx b/docs/platforms/react-native/data-management/data-collected.mdx index dde3db8a76aeb..8922b8ecc26ac 100644 --- a/docs/platforms/react-native/data-management/data-collected.mdx +++ b/docs/platforms/react-native/data-management/data-collected.mdx @@ -46,6 +46,8 @@ The full request URL and Referer of outgoing HTTP requests is **always sent to S 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. + ## Device Information By default the Sentry SDK does not send the name of the device on Android. diff --git a/docs/platforms/rust/common/data-management/data-collected.mdx b/docs/platforms/rust/common/data-management/data-collected.mdx index d45b5fce8c4a5..b6068107d111d 100644 --- a/docs/platforms/rust/common/data-management/data-collected.mdx +++ b/docs/platforms/rust/common/data-management/data-collected.mdx @@ -42,6 +42,8 @@ The full request URL of incoming HTTP requests captured by `sentry-actix` and `s The request query string captured by `sentry-actix` and `sentry-tower` (with `http` feature enabled) is **always sent to Sentry**. Depending on your application, this could contain PII data. +Please note that `send_default_pii` is not considered for a request query string. We recommend utilizing your own redactions in `before_send` or similar hooks. + ## Request Body Whether the Rust SDK automatically captures request bodies depends on the HTTP integration and configuration. diff --git a/docs/platforms/unity/data-management/data-collected.mdx b/docs/platforms/unity/data-management/data-collected.mdx index 4ef4e6d7e9e46..4280d25396fc1 100644 --- a/docs/platforms/unity/data-management/data-collected.mdx +++ b/docs/platforms/unity/data-management/data-collected.mdx @@ -50,6 +50,8 @@ Depending on your application, this could contain PII data. The full request query string of outgoing and incoming 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 `SetBeforeSend` or similar hooks. + ## SQL Queries While SQL queries are sent to Sentry, neither the full SQL query (`SELECT * FROM users WHERE email = 'joe@shmoe.com'`), nor the values of its parameters will ever be sent. A parameterized version of the query (`SELECT * FROM users WHERE email = @email`) is sent instead.