Skip to content

Commit 7263486

Browse files
committed
Relay gets own subsection
1 parent a4faf63 commit 7263486

File tree

6 files changed

+27
-10
lines changed

6 files changed

+27
-10
lines changed

develop-docs/ingestion/index.mdx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ description: How Sentry receives and processes data before putting it into stora
44
sidebar_order: 90
55
---
66

7-
Ingestion is done by [Sentry Relay](https://github.com/getsentry/relay), a service for event filtering, rate-limiting, and processing.
7+
Sentry can process and store millions of events per second. Here is the documentation of the tools used in Sentry's processing and ingestion pipeline.
88

9-
It can act as:
10-
11-
* the store endpoint for your Sentry installation. See [Relay developer
12-
documentation](https://getsentry.github.io/relay/relay/).
13-
* an additional middle layer between your application and Sentry. See [Relay product
14-
documentation](https://docs.sentry.io/product/relay/).
9+
<PageGrid />
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Relay
3+
description: A service for filtering, rate-limiting, and processing vast amounts of Sentry events.
4+
---
5+
6+
Ingestion is done by [Sentry Relay](https://github.com/getsentry/relay), a service for event filtering, rate-limiting, and processing.
7+
8+
It can act as:
9+
10+
* the store endpoint for your Sentry installation. See [Relay developer
11+
documentation](https://getsentry.github.io/relay/relay/).
12+
* an additional middle layer between your application and Sentry. See [Relay product
13+
documentation](https://docs.sentry.io/product/relay/).

develop-docs/ingestion/projectconfig-versioning.mdx renamed to develop-docs/ingestion/relay/projectconfig-versioning.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Naming and versioning patterns in project config
3+
sidebar_order: 20
34
---
45

56
## Internal vs External Relay?

develop-docs/ingestion/relay-best-practices.mdx renamed to develop-docs/ingestion/relay/relay-best-practices.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Relay Best Practices
3+
sidebar_order: 10
34
---
45

56
Relay is a critical component in Sentry's infrastructure handling hundreds of thousands of requests per second.

develop-docs/ingestion/transaction-span-ratelimits.mdx renamed to develop-docs/ingestion/relay/transaction-span-ratelimits.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Transaction and Span Rate Limiting
3+
sidebar_order: 30
34
---
45

56
<Alert level="warning" title="Important">

src/middleware.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3784,18 +3784,24 @@ const DEVELOPER_DOCS_REDIRECTS: Redirect[] = [
37843784
from: '/backend/ab-testing/',
37853785
to: '/backend/application-domains/ab-testing/',
37863786
},
3787+
/* Ingestion section rework */
37873788
{
37883789
from: '/relay/',
3789-
to: '/ingestion/',
3790+
to: '/ingestion/relay/',
37903791
},
37913792
{
37923793
from: '/relay/projectconfig-versioning/',
3793-
to: '/ingestion/projectconfig-versioning/',
3794+
to: '/ingestion/relay/projectconfig-versioning/',
37943795
},
37953796
{
37963797
from: '/relay/transaction-span-ratelimits/',
3797-
to: '/ingestion/transaction-span-ratelimits/',
3798+
to: '/ingestion/relay/transaction-span-ratelimits/',
37983799
},
3800+
{
3801+
from: '/relay/relay-best-practices/',
3802+
to: '/ingestion/relay/relay-best-practices/',
3803+
},
3804+
37993805
];
38003806

38013807
const redirectMap = new Map(

0 commit comments

Comments
 (0)