Skip to content

Commit 14fd25f

Browse files
committed
Fix broken links
1 parent 14fe58d commit 14fd25f

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

develop-docs/backend/issue-platform-detectors/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Issue Platform - Writing Detectors
33
sidebar_order: 90
44
---
55

6-
Issue detectors identify application issues by examining one or more datasets collected by Sentry, and report detected issue occurrences via the <Link to="/issue-platform/">Issue Platform</Link>. Detectors must fingerprint issues accurately and provide actionable information to developers.
6+
Issue detectors identify application issues by examining one or more datasets collected by Sentry, and report detected issue occurrences via the <Link to="/backend/issue-platform/">Issue Platform</Link>. Detectors must fingerprint issues accurately and provide actionable information to developers.
77

88
# Considerations
99

develop-docs/backend/issue-platform/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To use the Issue Platform you need to:
1616

1717
The first step to introducing a new issue type to Sentry is to determine what type of issue you want to detect. It can be from any data stream, as long as you can produce an <Link to="#issue-occurrence-schema">Occurrence</Link> representing the issue.
1818

19-
Writing a detector is the hardest part of creating a new issue type. Refer to <Link to="/issue-platform-detectors/">this guide</Link> for tips on how to write one.
19+
Writing a detector is the hardest part of creating a new issue type. Refer to <Link to="/backend/issue-platform-detectors/">this guide</Link> for tips on how to write one.
2020

2121
## Register an Issue Type
2222

develop-docs/backend/pii/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ The following rules exist by default:
5050

5151
Rules generally consist of two parts:
5252

53-
- _Rule types_ describe what to match. See <Link to="/pii/types/">PII Rule
53+
- _Rule types_ describe what to match. See <Link to="/backend/pii/types/">PII Rule
5454
Types</Link> for an exhaustive list.
5555
- _Rule redaction methods_ describe what to do with the match. See <Link
56-
to="/pii/methods/">PII Redaction Methods</Link> for a list.
56+
to="/backend/pii/methods/">PII Redaction Methods</Link> for a list.
5757

5858
Each page comes with examples. Try those examples out by pasting them into the
5959
"PII config" column of [Piinguin] and clicking on fields to get suggestions.

develop-docs/development/environment/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ sentry devservices up snuba
116116
Only Sentry employees have access to getsentry.
117117
</Alert>
118118

119-
See also: <Link to="/sentry-vs-getsentry/">Sentry vs Getsentry</Link>
119+
See also: <Link to="/application/sentry-vs-getsentry/">Sentry vs Getsentry</Link>
120120

121121
Before running `getsentry`, you might need to run `devenv sync` inside the `getsentry` directory if you have previously run `sentry` locally, as there might be differences between the environments.
122122

@@ -149,7 +149,7 @@ getsentry devserver --workers --ingest
149149

150150
## Running siloed instances
151151

152-
By default `sentry devserver` will run a monolith mode application server. You can also run `devserver` with siloed application instances. Before you do, you need to <Link to="/database-migrations/#cloning-a-monolith-database">create split silo databases</Link>.
152+
By default `sentry devserver` will run a monolith mode application server. You can also run `devserver` with siloed application instances. Before you do, you need to <Link to="/backend/database-migrations/#cloning-a-monolith-database">create split silo databases</Link>.
153153

154154
The devserver command supports `--silo` option that lets you create siloed instances. Any workers, consumers, or celery-beat processes will be started with the same silo mode.
155155

@@ -187,7 +187,7 @@ SENTRY_SILO_DEVSERVER=1 SENTRY_SILO_MODE=REGION SENTRY_REGION=us getsentry djang
187187

188188
## Troubleshooting
189189

190-
You might also be interested in <Link to="/continuous-integration/#troubleshooting-ci">troubleshooting CI</Link>.
190+
You might also be interested in <Link to="/development/continuous-integration/#troubleshooting-ci">troubleshooting CI</Link>.
191191

192192
---
193193

develop-docs/development/environment/ports.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ The following is a non-exhaustive list of ports used by Sentry services or any d
1010

1111
| Port | Service | Description
1212
|:-----|:-------------------------------------------|:-----------
13-
| 9000 | Clickhouse | <Link to="/services/devservices/">Devservice</Link> `clickhouse`. Database for Snuba.
13+
| 9000 | Clickhouse | <Link to="/development/devservices/">Devservice</Link> `clickhouse`. Database for Snuba.
1414
| 8123 | Clickhouse |
1515
| 9009 | Clickhouse |
16-
| 3021 | Symbolicator | <Link to="/services/devservices/">Devservice</Link> `symbolicator`. For processing stacktraces.
17-
| 1218 | [Snuba][] | <Link to="/services/devservices/">Devservice</Link> `snuba`. For searching events.
16+
| 3021 | Symbolicator | <Link to="/development/devservices/">Devservice</Link> `symbolicator`. For processing stacktraces.
17+
| 1218 | [Snuba][] | <Link to="/development/devservices/">Devservice</Link> `snuba`. For searching events.
1818
| 1219 | [Snuba][] admin | Not part of devservices setup, but running `snuba admin` will listen on this port.
19-
| 9092 | Kafka | <Link to="/services/devservices/">Devservice</Link> `kafka`. for relay-sentry communication and optionally for sentry-snuba communication
20-
| 6379 | Redis | <Link to="/services/devservices/">Devservice</Link> `redis` (or perhaps installed via Homebrew in rustier setups), responsible for caches, relay projectconfigs and Celery queues
21-
| 5432 | Postgres | <Link to="/services/devservices/">Devservice</Link> `postgres` (or perhaps installed via Homebrew in rustier setups)
22-
| 7899 | [Relay][] | <Link to="/services/devservices/">Devservice</Link> `relay`. Serves APIs for SDKs to send events to (aka event ingestion). Webpack on 8000 reverse-proxies to this server. Starts/stops with `sentry devserver`.
19+
| 9092 | Kafka | <Link to="/development/devservices/">Devservice</Link> `kafka`. for relay-sentry communication and optionally for sentry-snuba communication
20+
| 6379 | Redis | <Link to="/development/devservices/">Devservice</Link> `redis` (or perhaps installed via Homebrew in rustier setups), responsible for caches, relay projectconfigs and Celery queues
21+
| 5432 | Postgres | <Link to="/development/devservices/">Devservice</Link> `postgres` (or perhaps installed via Homebrew in rustier setups)
22+
| 7899 | [Relay][] | <Link to="/development/devservices/">Devservice</Link> `relay`. Serves APIs for SDKs to send events to (aka event ingestion). Webpack on 8000 reverse-proxies to this server. Starts/stops with `sentry devserver`.
2323
| 8000 | <Link to="/development/environment/">Sentry Dev</Link> | Webpack devserver, routing all ingest paths to Relay, and the rest to uWSGI. Routing is defined in `webpack.config.ts` in Sentry.
2424
| 8001 | uWSGI | Starts/stops with `sentry devserver`. Serves the Django app/API. Webpack on 8000 reverse-proxies to this server. In a siloed devserver, this port is used for control silo.
2525
| 8010 | uWSGI (region silo) | Starts/stops with `sentry devserver --silo=region`. Serves the Django app/API. Webpack on 8000 reverse-proxies to this server.

develop-docs/development/ngrok.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ getsentry devserver --ngrok=<yourname>.ngrok.io
6161

6262
To debug issues related to integration middleware as well as issues relating to latency induced by RPC calls, you can run your local environment in silo mode.
6363

64-
To learn more about how silo mode works in the dev environment, refer to <Link to="/environment/#running-siloed-instances"> Running Siloed Instances</Link>.
64+
To learn more about how silo mode works in the dev environment, refer to <Link to="/development/environment/#running-siloed-instances"> Running Siloed Instances</Link>.
6565

6666

6767
### Step 1: Split Local DB into Silos
68-
By default `sentry devserver` will run a monolith mode application server. You can also run ``devserver`` with siloed application instances. Before you do, you need to <Link to="/database-migrations/#cloning-a-monolith-database">create split silo databases</Link>.
68+
By default `sentry devserver` will run a monolith mode application server. You can also run ``devserver`` with siloed application instances. Before you do, you need to <Link to="/backend/database-migrations/#cloning-a-monolith-database">create split silo databases</Link>.
6969

7070

7171
### Step 2: Create Ngrok Config File

develop-docs/development/workflow.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Workflow
33
sidebar_order: 40
44
---
55

6-
You may also be interested in <Link to="/sentry-vs-getsentry/">sentry vs. getsentry</Link>.
6+
You may also be interested in <Link to="/application/sentry-vs-getsentry/">sentry vs. getsentry</Link>.
77

88

99
## Testing Sentry commits in Getsentry

0 commit comments

Comments
 (0)