diff --git a/docs/product/crons/job-monitoring.mdx b/docs/product/crons/monitor-details.mdx similarity index 83% rename from docs/product/crons/job-monitoring.mdx rename to docs/product/crons/monitor-details.mdx index f4f189a2ad90c..9f1946d5b8fe0 100644 --- a/docs/product/crons/job-monitoring.mdx +++ b/docs/product/crons/monitor-details.mdx @@ -1,9 +1,19 @@ --- -title: Job Monitoring +title: Monitor Details sidebar_order: 1 -description: "Learn how to set up monitor notifications, monitor the same job in multiple environments, and manage your monitor in the Sentry UI." +description: "Learn how to navigate the Monitor Details page to help you understand your recurring job's overall health." --- +The **Monitor Details** page is where you'll find a daily historical bar chart showing successful, failed, and missed check-ins and a line chart of the runtime average for the job execution. + +The "Issues" section shows the issues created from this Cron Monitor. Issues are created when a cron monitor job execution is missed or failed. If you have configured the Sentry SDK for your job, any errors thrown during the job runtime will be shown here as well. + +The table of recent check-ins lists previously scheduled jobs and their statuses. + + + +## Check-in Statuses + Sentry's Cron Monitoring service can notify you and store a timeline of the following check-in events: - **Missed check-in:** The job didn't execute in the predicted timeframe or frequency. This can happen for various reasons, such as: @@ -13,19 +23,10 @@ Sentry's Cron Monitoring service can notify you and store a timeline of the foll - An invalid request format. - **Failed check-in:** The job has reported its execution as unsuccessful. - **Successful check-in:** The job has reported its execution as successful. +- **Unknown check-in:** In rare occasions, it is possible that Sentry is unable to identify a check-in status. This can happen during outages or maintenance periods. To see information about your cron monitor, select "Crons" from the sidebar menu and click on your cron monitor's name. -## Cron Monitor Details - -This is where you'll find a daily historical bar chart showing successful, failed, and missed check-ins and a line chart of the runtime average for the job execution. - -The "Issues" section shows the issues created from this Cron Monitor. Issues are created when a cron monitor job execution is missed or failed. If you have configured the Sentry SDK for your job, any errors thrown during the job runtime will be shown here as well. - -The table of recent check-ins lists previously scheduled jobs and their statuses. - - - ## Multiple Environments To monitor the same job in different environments, use a shared schedule to send check-ins for multiple environments to one monitor. Each environment will have its own status and set of check-ins. diff --git a/src/middleware.ts b/src/middleware.ts index bb6162ececf97..818281b32741f 100644 --- a/src/middleware.ts +++ b/src/middleware.ts @@ -3351,6 +3351,10 @@ const USER_DOCS_REDIRECTS: Redirect[] = [ from: '/clients/cordova/', to: '/platforms/javascript/guides/cordova/', }, + { + from: '/product/crons/job-monitoring/', + to: '/product/crons/monitor-details/', + }, ]; const DEVELOPER_DOCS_REDIRECTS: Redirect[] = [