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
2 changes: 2 additions & 0 deletions docs/platforms/android/data-management/data-collected.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions docs/platforms/rust/common/data-management/data-collected.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions docs/platforms/unity/data-management/data-collected.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading