Skip to content

Commit 9a6b008

Browse files
committed
Fixed links to event-payloads
1 parent f30005f commit 9a6b008

File tree

103 files changed

+134
-134
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+134
-134
lines changed

develop-docs/application/transaction-clustering/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ In terms of technical implementation, it is similar to [Data Scrubbing](/pii/).
1212
## The Problem
1313

1414
In our [Performance](https://docs.sentry.io/product/performance/) product, transactions are grouped by their name
15-
(the [`event.transaction`](/sdk/event-payloads/#optional-attributes) field).
15+
(the [`event.transaction`](/sdk/data-model/event-payloads/#optional-attributes) field).
1616
This works well as long as the cardinality of distinct transaction names that the SDK sends is low, for example
1717
by using the [route of a web framework](https://docs.sentry.io/platforms/javascript/guides/react/configuration/integrations/react-router/) as the transaction name.
1818

develop-docs/sdk/data-model/envelopes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Envelopes can have a number of headers which are valid in all situations:
125125

126126
`sdk`
127127

128-
: *Object, recommended.* This can carry the same payload as the [`sdk` interface](/sdk/event-payloads/sdk/)
128+
: *Object, recommended.* This can carry the same payload as the [`sdk` interface](/sdk/data-model/event-payloads/sdk/)
129129
in the event payload but can be carried for all events. This means that SDK
130130
information can be carried for minidumps, session data and other submissions.
131131

develop-docs/sdk/data-model/event-payloads/contexts.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ confusion about which OS context represents what. So here's some examples:
206206
the SDK (if at all).
207207

208208
Additionally, the Sentry server will attempt to parse the `User-Agent` header
209-
from the event's [Request Interface](/sdk/event-payloads/request/) and create a _secondary_ OS
209+
from the event's [Request Interface](/sdk/data-model/event-payloads/request/) and create a _secondary_ OS
210210
context under the non-default key `"client_os"`.
211211

212212
- In events reported from a JS web frontend, the SDK typically reports no OS
@@ -598,7 +598,7 @@ The `type` and default key is `"cloud_resource"`.
598598

599599
### Example Cloud Resource Context
600600

601-
The following example illustrates the contexts part of the <Link to="/sdk/event-payloads/">event payload</Link> and omits other attributes for simplicity.
601+
The following example illustrates the contexts part of the <Link to="/sdk/data-model/event-payloads/">event payload</Link> and omits other attributes for simplicity.
602602

603603
```json
604604
{

develop-docs/sdk/data-model/event-payloads/debugmeta.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ system symbols, and is not required for other SDKs.
2929
## Debug Images
3030

3131
The list of debug images contains all dynamic libraries loaded into the process
32-
and their memory addresses. Instruction addresses in the [Stack Trace](/sdk/event-payloads/stacktrace/) are
32+
and their memory addresses. Instruction addresses in the [Stack Trace](/sdk/data-model/event-payloads/stacktrace/) are
3333
mapped into the list of debug images in order to retrieve debug files for
3434
symbolication.
3535

develop-docs/sdk/data-model/event-payloads/exception.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_order: 2
55

66
The Exception Interface specifies an exception or error that occurred in a program.
77

8-
An <Link to="/sdk/event-payloads/">event</Link> may contain one or more exceptions in an attribute named `exception`.
8+
An <Link to="/sdk/data-model/event-payloads/">event</Link> may contain one or more exceptions in an attribute named `exception`.
99

1010
The `exception` attribute should be an object with the attribute `values`
1111
containing a list of one or more values that are objects in the format described
@@ -41,7 +41,7 @@ description of `ValueError`.
4141

4242
`thread_id`
4343

44-
: An optional value which refers to a thread in the [Thread Interface](/sdk/event-payloads/threads/).
44+
: An optional value which refers to a thread in the [Thread Interface](/sdk/data-model/event-payloads/threads/).
4545

4646
`mechanism`
4747

@@ -50,7 +50,7 @@ created this exception.
5050

5151
`stacktrace`
5252

53-
: An optional stack trace object corresponding to the [Stack Trace Interface](/sdk/event-payloads/stacktrace/).
53+
: An optional stack trace object corresponding to the [Stack Trace Interface](/sdk/data-model/event-payloads/stacktrace/).
5454

5555
## Exception Mechanism
5656

@@ -206,7 +206,7 @@ information.
206206
## Examples
207207

208208
The following examples illustrate multiple ways to send exceptions. Each example
209-
contains the exception part of the <Link to="/sdk/event-payloads/">event payload</Link> and omits other
209+
contains the exception part of the <Link to="/sdk/data-model/event-payloads/">event payload</Link> and omits other
210210
attributes for simplicity.
211211

212212
A single exception:

develop-docs/sdk/data-model/event-payloads/lockreason.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ to determine which other thread is holding the lock in case the current thread i
88

99
<Note>
1010

11-
Lock reasons are always part of a [thread](/sdk/event-payloads/threads/). They cannot be declared as a top-level event property.
11+
Lock reasons are always part of a [thread](/sdk/data-model/event-payloads/threads/). They cannot be declared as a top-level event property.
1212

1313
</Note>
1414

develop-docs/sdk/data-model/event-payloads/properties/contexts_trace.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
`contexts.trace`
22

3-
: _Recommended_. A Transaction has to have a specific `contexts.trace` entry that contains tracing information. See the [Trace Context documentation](/sdk/event-payloads/contexts/#trace-context).
3+
: _Recommended_. A Transaction has to have a specific `contexts.trace` entry that contains tracing information. See the [Trace Context documentation](/sdk/data-model/event-payloads/contexts/#trace-context).
44

55
```json
66
{

develop-docs/sdk/data-model/event-payloads/properties/spans.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
`spans`
22

3-
: _Recommended_. A list of [Spans](/sdk/event-payloads/span/).
3+
: _Recommended_. A list of [Spans](/sdk/data-model/event-payloads/span/).
44

55
```json
66
{

develop-docs/sdk/data-model/event-payloads/replay-recording.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The payload for `"options"` is a record of configuration name -> configuration v
7676

7777
### Breadcrumbs
7878

79-
Breadcrumbs are named as such because they are intercepted from the web SDK and forwarded as a custom recording event. They have the same structure as describe in <Link to="/sdk/event-payloads/breadcrumbs/">breadcrumbs interface</Link>.
79+
Breadcrumbs are named as such because they are intercepted from the web SDK and forwarded as a custom recording event. They have the same structure as describe in <Link to="/sdk/data-model/event-payloads/breadcrumbs/">breadcrumbs interface</Link>.
8080

8181
```json
8282
{

develop-docs/sdk/data-model/event-payloads/sdk.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ reference (branch, tag or SHA).
7171

7272
## Example
7373

74-
The following example illustrates the SDK part of the <Link to="/sdk/event-payloads/">event payload</Link> and omits other
74+
The following example illustrates the SDK part of the <Link to="/sdk/data-model/event-payloads/">event payload</Link> and omits other
7575
attributes for simplicity.
7676

7777
```json

0 commit comments

Comments
 (0)