Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion develop-docs/development/environment/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ After the server is running we can visit the dev server using `https` at port `:

### Ingestion Pipeline (Relay) aka Sending Events to your Dev Environment

<Link to="/services/relay/">Relay</Link> and the ingest workers are not started by default. Follow the instructions below to start them so you can send events to your dev environment Sentry instance:
<Link to="/relay/">Relay</Link> and the ingest workers are not started by default. Follow the instructions below to start them so you can send events to your dev environment Sentry instance:

- Set `SENTRY_USE_RELAY = True` in `~/.sentry/sentry.conf.py`. This will tell `sentry devservices up` to also start services that Relay needs.
- Run `sentry devservices up` to start the services Relay needs. (like for example Kafka)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
---
title: Relay
title: Relay Development
sidebar_order: 60
---

Relay is a service for event filtering, rate-limiting and processing. It can act as:

* the store endpoint for your Sentry installation. See [Relay developer
documentation](https://getsentry.github.io/relay/relay/).

* an additional middle layer between your application and Sentry. See [Relay product
documentation](https://docs.sentry.io/product/relay/).

## Contents

* [Naming and versioning patterns in project config](/services/relay/projectconfig-versioning/)
1 change: 1 addition & 0 deletions src/components/sidebar/developDocsSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const devDocsMenuItems: {root: string; title: string; hideChevron?: boolean}[] =
{root: 'frontend', title: 'Frontend'},
{root: 'backend', title: 'Backend'},
{root: 'sdk', title: 'SDK Development'},
{root: 'relay', title: 'Relay Development'},
{root: 'services', title: 'Services'},
{root: 'integrations', title: 'Integrations'},
{root: 'self-hosted', title: 'Self-Hosted Sentry'},
Expand Down
Loading