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: develop-docs/sdk/data-model/event-payloads/contexts.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -640,7 +640,7 @@ Additional information that allows Sentry to connect multiple transactions, span
640
640
641
641
`op`
642
642
643
-
: _Optional_. Short code identifying the type of operation the span is measuring. For more details, see [Sentry's conventions around span operations](https://develop.sentry.dev/sdk/performance/span-operations/).
643
+
: _Optional_. Short code identifying the type of operation the span is measuring. For more details, see [Sentry's conventions around span operations](/sdk/performance/span-operations/).
644
644
645
645
- Example: `"http.server"`
646
646
@@ -692,7 +692,7 @@ Additional information that allows Sentry to connect multiple transactions, span
692
692
693
693
`dynamic_sampling_context`
694
694
695
-
: _Optional_. The [Dynamic Sampling Context](https://develop.sentry.dev/sdk/performance/dynamic-sampling-context/).
695
+
: _Optional_. The [Dynamic Sampling Context](/sdk/performance/dynamic-sampling-context/).
Copy file name to clipboardExpand all lines: develop-docs/sdk/expected-features/data-handling.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ All other platforms require the event to include `user.ip={{auto}}` which happen
31
31
32
32
Before sending events to Sentry, the SDKs should invokes callbacks. That allows users to remove any sensitive data client-side.
33
33
34
-
-[`before-send` and `event-processors`](https://develop.sentry.dev/sdk/miscellaneous/unified-api/#static-api) can be used to register a callback with custom logic to remove sensitive data.
34
+
-[`before-send` and `event-processors`](/sdk/miscellaneous/unified-api/#static-api) can be used to register a callback with custom logic to remove sensitive data.
Copy file name to clipboardExpand all lines: develop-docs/sdk/expected-features/rate-limiting.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Each *quota_limit* has the form `retry_after:categories:scope:reason_code:namesp
15
15
16
16
-`retry_after`: Number of seconds (as an integer or a floating point number) until this rate limit expires.
17
17
-`categories`: Semicolon-separated list of [data categories](https://github.com/getsentry/relay/blob/master/relay-base-schema/src/data_category.rs#L91). **If empty, this limit applies to all categories**.
18
-
While these categories might look similar to the [envelope item types](/sdk/data-model/envelopes/#data-model), they are not identical, and have slight differences.
18
+
While these categories might look similar to the [envelope item types](/sdk/data-model/envelope-items/), they are not identical, and have slight differences.
19
19
-`scope`: The scope that this limit applies to. Can be ignored by SDKs.
20
20
-`reason_code`: A unique identifier for the quota hinting at the rate limiting reason. Can be ignored by SDKs.
21
21
-`namespaces`: Semicolon-separated list of metric namespace identifiers. This will only be present if the rate limit applies to the `metric_bucket` data category. If the namespace is not present, the backoff applies to all metrics.
@@ -83,7 +83,7 @@ Guidelines for how SDKs should determine the current rate limits:
83
83
As stated earlier, SDKs can ignore the `scope` dimension. These definitions are here as a suplement to explain what the `X-Sentry-Rate-Limits` header is made of.
84
84
85
85
-**Category:** Classifies the type of data that is being counted. Arbitrary categories can be added as long as they can be inferred from the event or data being ingested.
86
-
While these [data categories](https://github.com/getsentry/relay/blob/master/relay-base-schema/src/data_category.rs#L91) might look similar to the [envelope item types](/sdk/data-model/envelopes/#data-model), they are not identical, and have slight differences.
86
+
While these [data categories](https://github.com/getsentry/relay/blob/master/relay-base-schema/src/data_category.rs#L91) might look similar to the [envelope item types](/sdk/data-model/envelope-items/), they are not identical, and have slight differences.
87
87
-`default`: Events with an event_type not listed explicitly below.
Copy file name to clipboardExpand all lines: develop-docs/sdk/miscellaneous/unified-api/index.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ _Types Example:_ Typed languages might have very different developer experience
17
17
18
18
_Platform Example:_ Does Rust have exceptions? Nope, don't name APIs for rust like `captureException`.
19
19
20
-
_Unified API Example:_ We don't like Hubs and Scopes anymore, and we are redefining that, <Linkto="/sdk/miscellaneous/hub_and_scope_refactoring/">Hub & Scope Refactoring</Link>
20
+
_Unified API Example:_ We don't like Hubs and Scopes anymore, and we are redefining that, <Linkto="/sdk/hub_and_scope_refactoring/">Hub & Scope Refactoring</Link>
21
21
22
22
</Alert>
23
23
@@ -280,7 +280,7 @@ processing happens.
280
280
281
281
## Options
282
282
283
-
Many options are standardized across SDKs. For a list of these refer to [the main options documentation](https://docs.sentry.io/error-reporting/configuration/).
283
+
Many options are standardized across SDKs. For a list of these refer to [the main options documentation](https://docs.sentry.io/platforms/javascript/configuration/).
| type |`"replay_event"`| Must be `"replay_event"`|
22
-
| replay_id | string | A unique ID for the replay. Follows the [same requirements](https://develop.sentry.dev/sdk/data-model/event-payloads/#required-attributes) as an `event_id`: Hexadecimal string representing a uuid4 value. The length is exactly 32 characters. Dashes are not allowed. Has to be lowercase. |
22
+
| replay_id | string | A unique ID for the replay. Follows the [same requirements](/sdk/data-model/event-payloads/#required-attributes) as an `event_id`: Hexadecimal string representing a uuid4 value. The length is exactly 32 characters. Dashes are not allowed. Has to be lowercase.|
23
23
| replay_type |`"session"`\|`"buffer"`| Describes the type of replay. `buffer` means the replay is buffered while waiting for an error to occur or until a manual flush. `session` means the replay starts recording immediately and continues through the lifespan of the replay session. |
24
24
| segment_id | number | The segment id. |
25
25
| replay_start_timestamp | number | UNIX timestamp of the start of the replay (in seconds). This is only required on the first segment. |
@@ -29,7 +29,7 @@ The following attributes are specific to the `"replay_event"` Item type.
29
29
30
30
### Event Attributes
31
31
32
-
The following attributes are a subset of the [optional attributes](https://develop.sentry.dev/sdk/data-model/event-payloads/#optional-attributes) of an Event.
32
+
The following attributes are a subset of the [optional attributes](/sdk/data-model/event-payloads/#optional-attributes) of an Event.
0 commit comments