Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -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.

<Arcade src="https://demo.arcade.software/7XmPfL0l2pp6KmBUXwMc?embed" />

## 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:
Expand All @@ -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.

<Arcade src="https://demo.arcade.software/7XmPfL0l2pp6KmBUXwMc?embed" />

## 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.
Expand Down
4 changes: 4 additions & 0 deletions src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [
Expand Down
Loading