Skip to content

Commit aec35c2

Browse files
review
1 parent fd6961e commit aec35c2

File tree

13 files changed

+13
-13
lines changed
  • docs/platforms
    • dart/data-management/sensitive-data
    • dotnet/common/data-management/sensitive-data
    • elixir/data-management/sensitive-data
    • flutter/data-management/sensitive-data
    • go/common/data-management/sensitive-data
    • javascript/common/data-management/sensitive-data
    • java/common/data-management/sensitive-data
    • php/common/data-management/sensitive-data
    • powershell/data-management/sensitive-data
    • python/data-management/sensitive-data
    • react-native/data-management/sensitive-data
    • ruby/common/data-management/sensitive-data
    • rust/common/data-management/sensitive-data

13 files changed

+13
-13
lines changed

docs/platforms/dart/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Sensitive data may appear in the following areas:
4848
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
4949
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5050
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
51-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
51+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5252

5353
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
5454

docs/platforms/dotnet/common/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Sensitive data may appear in the following areas:
5454
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
5555
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5656
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
57-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
57+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5858

5959
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
6060

docs/platforms/elixir/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Sensitive data may appear in the following areas:
4848
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
4949
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5050
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
51-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
51+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5252

5353
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
5454

docs/platforms/flutter/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Sensitive data may appear in the following areas:
4848
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
4949
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5050
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
51-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
51+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5252

5353
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
5454

docs/platforms/go/common/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Sensitive data may appear in the following areas:
4848
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
4949
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5050
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
51-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
51+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5252

5353
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
5454

docs/platforms/java/common/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Sensitive data may appear in the following areas:
5454
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
5555
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5656
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
57-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
57+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5858

5959
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
6060

docs/platforms/javascript/common/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Sensitive data may appear in the following areas:
4949
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
5050
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5151
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
52-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
52+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5353

5454
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
5555

docs/platforms/php/common/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Sensitive data may appear in the following areas:
5454
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
5555
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5656
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
57-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
57+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5858

5959
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
6060

docs/platforms/powershell/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Sensitive data may appear in the following areas:
5454
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
5555
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
5656
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
57-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
57+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
5858

5959
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
6060

docs/platforms/python/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Sensitive data may appear in the following areas:
6060
- User context → Automated behavior is controlled via <PlatformIdentifier name="send-default-pii" />.
6161
- HTTP context → Query strings may be picked up in some frameworks as part of the HTTP request context.
6262
- Transaction Names → In certain situations, transaction names might contain sensitive data. For example, a browser's pageload transaction might have a raw URL like `/users/1234/details` as its name (where `1234` is a user id, which may be considered PII). In most cases, our SDKs can parameterize URLs and routes successfully, that is, turn `/users/1234/details` into `/users/:userid/details`. However, depending on the framework, your routing configuration, race conditions, and a few other factors, the SDKs might not be able to completely parameterize all of your URLs.
63-
- HTTP Spans → Most SDKs will add the HTTP query string and fragment as a data attribute to the span, which may need to be scrubbed.
63+
- HTTP Spans → Most SDKs will include the HTTP query string and fragment as a data attribute, which means the HTTP span may need to be scrubbed.
6464

6565
For more details and data filtering instructions, see <PlatformLink to="/configuration/filtering/">Filtering Events</PlatformLink>.
6666

0 commit comments

Comments
 (0)