Skip to content

Commit 80ddc8d

Browse files
fix(crons): Broken create links (#14964)
Fixes #14959
1 parent 7c86ba7 commit 80ddc8d

File tree

25 files changed

+25
-25
lines changed

25 files changed

+25
-25
lines changed

docs/cli/crons.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Sentry Crons allows you to monitor the uptime and performance of any scheduled,
1717
To begin monitoring your recurring, scheduled job:
1818

1919
- [Install](/cli/installation) the Sentry CLI (min v2.16.1).
20-
- Create and configure your first Monitor in [Sentry](https://sentry.io/crons/create/) or [via the CLI](#creating-or-updating-a-monitor-through-a-check-in-optional).
20+
- Create and configure your first Monitor in [Sentry](https://sentry.io/issues/alerts/new/crons/) or [via the CLI](#creating-or-updating-a-monitor-through-a-check-in-optional).
2121

2222
## Configuration
2323

docs/platforms/javascript/common/crons/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Once implemented, it'll allow you to get alerts and metrics to help you solve er
4343

4444
To begin monitoring your recurring, scheduled job:
4545

46-
1. [Create a new monitor](https://sentry.io/crons/create/) in Sentry.
46+
1. [Create a new monitor](https://sentry.io/issues/alerts/new/crons/) in Sentry.
4747
2. Configure check-ins or a heartbeat for your job.
4848

4949
Optionally, you can skip the first step and [create or update (upsert) a monitor through a check-in](#creating-or-updating-a-monitor-through-a-check-in-optional). See more below.

docs/platforms/python/crons/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Once implemented, it'll allow you to get alerts and metrics to help you solve er
1515

1616
## Configuring Cron Monitors
1717

18-
You can create and update your monitors programmatically with code rather than [creating and configuring them in Sentry.io](https://sentry.io/crons/create/). If the monitor doesn't exist in Sentry yet, it will be created.
18+
You can create and update your monitors programmatically with code rather than [creating and configuring them in Sentry.io](https://sentry.io/issues/alerts/new/crons/). If the monitor doesn't exist in Sentry yet, it will be created.
1919

2020
To create or update a monitor, use `monitor` as outlined above and pass in your monitor configuration as `monitor_config`. This requires SDK version `1.45.0` or higher.
2121

docs/platforms/python/integrations/celery/crons.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def init_sentry(**kwargs):
9292

9393
Once Sentry Crons is set up, tasks in your Celery beat schedule will be auto-discoverable, and telemetry data will be captured when a task is started, when it finishes, and when it fails.
9494

95-
Start your Celery beat and worker services and see your tasks being monitored at [https://sentry.io/crons/](https://sentry.io/crons/).
95+
Start your Celery beat and worker services and see your tasks being monitored at [https://sentry.io/insights/crons](https://sentry.io/insights/crons/).
9696

9797
In addition to the default Celery Beat scheduler, we also support [Redbeat](https://redbeat.readthedocs.io/en/latest).
9898

includes/javascript-crons-upsert.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
You can create and update your Monitors programmatically with code rather than [creating and configuring them in Sentry.io](https://sentry.io/crons/create/).
1+
You can create and update your Monitors programmatically with code rather than [creating and configuring them in Sentry.io](https://sentry.io/issues/alerts/new/crons/).
22

33
To create/update a monitor, use `Sentry.withMonitor()` and pass in your monitor configuration as a third parameter:
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- Use our <PlatformLink to="/">getting started</PlatformLink> guide to install and configure the Sentry .NET SDK (min 4.2.0) for your recurring job.
2-
- [Create and configure](https://sentry.io/crons/create/) your first Monitor.
2+
- [Create and configure](https://sentry.io/issues/alerts/new/crons/) your first Monitor.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- Use our <PlatformLink to="/">getting started</PlatformLink> guide to install and configure the Sentry Elixir SDK (min v10.2.0) for your recurring job.
2-
- [Create and configure](https://sentry.io/crons/create/) your first monitor.
2+
- [Create and configure](https://sentry.io/issues/alerts/new/crons/) your first monitor.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- Use our <PlatformLink to="/">getting started</PlatformLink> guide to install and configure the Sentry Go SDK (version `0.23.0` or newer) for your recurring job.
2-
- [Create and configure](https://sentry.io/crons/create/) your first Monitor.
2+
- [Create and configure](https://sentry.io/issues/alerts/new/crons/) your first Monitor.

platform-includes/crons/requirements/java.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
<PlatformSection supported={["java.spring-boot"]}>
33
- Ensure that `org.aspectj.aspectjweaver` is present as a dependency of your project.
44
</PlatformSection>
5-
- [Create and configure](https://sentry.io/crons/create/) your first Monitor.
5+
- [Create and configure](https://sentry.io/issues/alerts/new/crons/) your first Monitor.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- Use our <PlatformLink to="/">getting started</PlatformLink> guide to install and configure the Sentry SDK (version `7.51.1` or newer) for your recurring job.
2-
- [Create and configure](https://sentry.io/crons/create/) your first Monitor.
2+
- [Create and configure](https://sentry.io/issues/alerts/new/crons/) your first Monitor.

0 commit comments

Comments
 (0)