You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/docs/contributing/approach/write-data-management.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ This file is `/sensitive-data/index.mdx`. It explains how to scrub or filter dat
51
51
52
52
For data scrubbing that the SDK DOES NOT support, add the name of the SDK to the `PlatformSection notSupported` statement, which ensures the content won't display. For example:
Copy file name to clipboardExpand all lines: src/platforms/common/data-management/event-grouping/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ All events have a fingerprint. Events with the same fingerprint are grouped toge
11
11
12
12
By default, Sentry will run one of our built-in grouping algorithms to generate a fingerprint based on information available within the event such as `stacktrace`, `exception`, and `message`. To extend the default grouping behavior or change it completely, you can use a combination of the following options:
13
13
14
-
1. In your SDK, using [SDK Fingerprinting](./sdk-fingerprinting/)
14
+
1. In your SDK<PlatformSectionnotSupported={["native.wasm", "native.minidumps"]}>, using [SDK Fingerprinting](./sdk-fingerprinting/)</PlatformSection>
15
15
2. In your project, using [Fingerprint Rules](./fingerprint-rules/)
16
16
3. In your project, using [Stack Trace Rules](./stack-trace-rules/)
description: "Learn about overriding default fingerprinting in your SDK."
7
+
notSupported:
8
+
["native.wasm", "native.minidump"]
7
9
---
8
10
9
11
In supported SDKs, you can override Sentry's default grouping that passes the fingerprint attribute as an array of strings. The length of a fingerprint's array is not restricted. This works similarly to the [fingerprint rules functionality](../fingerprint-rules/), which is always available and can achieve similar results.
Our newer SDKs do not purposefully send PII to stay on the safe side. This behavior is controlled by an option called [`send-default-pii`](../../configuration/options/#send-default-pii).
23
23
24
24
Turning this option on is required for certain features in Sentry to work, but also means you will need to be even more careful about what data is being sent to Sentry (using the options below).
If you _do not_ wish to use the default PII behavior, you can also choose to identify users in a more controlled manner, using our [user identity context](../../enriching-events/identify-user/).
Copy file name to clipboardExpand all lines: src/platforms/common/enriching-events/tags.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ description: "Tags power UI features such as filters and tag-distribution maps.
12
12
13
13
We’ll automatically index all tags for an event, as well as the frequency and the last time that Sentry has seen a tag. We also keep track of the number of distinct tags and can assist you in determining hotspots for various issues.
0 commit comments