From 79ddc7c0846aa6395e3bd5f9437c96baf9e13a3b Mon Sep 17 00:00:00 2001 From: Alexander Dinauer Date: Wed, 13 May 2026 20:50:44 +0200 Subject: [PATCH] docs: Generalize query string collection wording Avoid implying that Apple and Native query string collection only applies to tracing spans. Use more generic data-collected wording so breadcrumbs and event request data are not excluded by the description. Co-Authored-By: Claude --- docs/platforms/apple/common/data-management/data-collected.mdx | 2 +- docs/platforms/native/common/data-management/data-collected.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/platforms/apple/common/data-management/data-collected.mdx b/docs/platforms/apple/common/data-management/data-collected.mdx index 9b58367a36076..28a3d60799779 100644 --- a/docs/platforms/apple/common/data-management/data-collected.mdx +++ b/docs/platforms/apple/common/data-management/data-collected.mdx @@ -36,7 +36,7 @@ When you enable tracing, 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. diff --git a/docs/platforms/native/common/data-management/data-collected.mdx b/docs/platforms/native/common/data-management/data-collected.mdx index 1d710e8bdc3d2..18dceb72d8be1 100644 --- a/docs/platforms/native/common/data-management/data-collected.mdx +++ b/docs/platforms/native/common/data-management/data-collected.mdx @@ -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.