{% extends "base.html" %} {% load compress humanize staticfiles %} {% block containers %}

Cron Monitoring. Get Notified When Your Cron Jobs Fail.

Make a HTTP GET request to this address from your cron job, daemon, script or long running task. When this address is not requested for a set time period, you will get alerted. Below are snippets that are ready to be copy/pasted into your own scripts.

Here's an unique ping address for you:

{% include "front/snippets/crontab.html" %}
{% include "front/snippets/bash.html" %}
{% include "front/snippets/python.html" %}
{% include "front/snippets/node.html" %}
{% include "front/snippets/php.html" %}
{% include "front/snippets/browser.html" %}
{% include "front/snippets/powershell.html" %}
As an alternative to HTTP/HTTPS requests, you can "ping" this check by sending an email message to

E-mail Address to Receive Alerts:

{% csrf_token %}
@

A quick peek of what's inside:

My Checks page

A list of your checks, one for each Cron job, daemon or periodically running task you want to monitor.

Give names to your checks to easily recognize them later. Adjust Period and Grace time to match periodicity and duration of your tasks.

Period/Grace Time dialog
Each check has configurable Period and Grace Time parameters. Depending on these parameters and time since the last ping, the check is in one of the following states:
New. A check that has been created, but has not received any pings yet.
Up. Time since last ping has not exceeded Period.
Late. Time since last ping has exceeded Period, but has not yet exceeded Period + Grace.
Down. Time since last ping has exceeded Period + Grace. When check goes from "Late" to "Down", HealthChecks sends you a notification.
Channels page

You can specify additional email addresses, webhooks, PagerDuty, Slack and HipChat accounts to send notifications to.

{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}