Healthchecks is a free, open source orchestration & scheduling project written in Python and released under BSD-3-Clause. It has 10,338 GitHub stars, 1,012 forks and 53 open issues, and was last pushed 3 days ago. On this registry it ranks #19 of 64 tracked projects in Orchestration & Scheduling, with 5 head-to-head comparisons available. It gained 14 stars over the last 6 tracked days.

What is Healthchecks?

What it is

Healthchecks is an open-source cron job and background task monitoring service written in Python and Django. It lives in the Infrastructure and Operations ecosystem, in the orchestration and scheduling area, where teams need to know whether recurring jobs ran as expected. The service listens for HTTP requests and email messages, called pings, from cron jobs and scheduled tasks, called checks. When a ping does not arrive on time, Healthchecks sends alerts.

The concrete problem it solves is missed or late runs of cron jobs and scheduled tasks. A cron job may stop running, hang, finish late, or fail before it reports success, and the failure may not be visible from the job itself. Healthchecks turns each scheduled task into a monitored check with an expected schedule, then tracks whether the task reports in. It provides a web dashboard, an API, notification integrations, monthly email reports, two-factor support, and team management features.

Key capabilities

  • It accepts pings from scheduled tasks through HTTP requests and email messages.
  • It sends alerts when a check does not report within its configured schedule.
  • It provides a web dashboard with check status and a live-updating event log for each check.
  • It supports Period and Grace Time parameters, or cron expressions parsed with the cronsim library.
  • It offers more than 25 notification integrations, monthly email reports, WebAuthn two-factor support, projects, team members, and read-only access.
  • It exposes status badges with public but hard-to-guess URLs for README files, dashboards, or status pages.

Who uses it and how

  • Operations teams monitor cron jobs and scheduled tasks by adding a ping call to each job.
  • Developers check task status through the web dashboard or the API.
  • Teams share monitoring across projects, team members, and read-only users.
  • Users place status badges in README files, dashboards, or status pages.

Getting started

Typical deployment methods include the hosted service at healthchecks.io, pre-built Docker images under healthchecks/healthchecks, or a source install using a Python virtual environment, pip requirements, database migrations, and the Django development server at localhost port 8000. The default development configuration stores data in a SQLite file named hc.sqlite, while supported database building blocks include PostgreSQL, MySQL, or MariaDB.

When to use it — and when not to

Healthchecks is useful when a team wants a self-managed, open-source cron monitoring service and needs alerting, dashboard status, API access, and team sharing. A self-hoster must operate the Django application and a supported database, and must also account for alert and email report delivery. The provided metadata shows 0 contributors, 53 open issues, and a repository age of 0 years, so maintenance signals are limited.

project readme (upstream, from github) — read inline

Healthchecks

Tests Coverage Status

Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts.

Healthchecks comes with a web dashboard, API, 25+ integrations for delivering notifications, monthly email reports, WebAuthn 2FA support, team management features: projects, team members, read-only access.

The building blocks are:

  • Python 3.12+
  • Django 6.1
  • PostgreSQL, MySQL or MariaDB

Healthchecks is licensed under the BSD 3-clause license.

Healthchecks is available as a hosted service at https://healthchecks.io/.

A Dockerfile and pre-built Docker images are available.

Screenshots:

The "My Checks" screen. Shows the status of all your cron jobs in a live-updating dashboard.

Screenshot of My Checks page

Each check has configurable Period and Grace Time parameters. Period is the expected time between pings. Grace Time specifies how long to wait before sending out alerts when a job is running late.

Screenshot of Period/Grace dialog

Alternatively, you can define the expected schedules using a cron expressions. Healthchecks uses the cronsim library to parse and evaluate cron expressions.

Screenshot of Cron dialog

Check details page, with a live-updating event log.

Screenshot of Check Details page

Healthchecks provides status badges with public but hard-to-guess URLs. You can use them in your READMEs, dashboards, or status pages.

Screenshot of Badges page

Setting Up for Development

If you are planning to developing Healthchecks, please read CONTRIBUTING.md.

To set up Healthchecks development environment:

  • Install dependencies (Debian/Ubuntu):

    sudo apt update
    sudo apt install -y python3-venv
    
  • Prepare directory for project code and virtualenv. Feel free to use a different location:

    mkdir -p ~/webapps
    cd ~/webapps
    
  • Prepare virtual environment (with virtualenv you get pip, we'll use it soon to install requirements):

    python3 -m venv .venv
    source .venv/bin/activate
    
  • Check out project code:

    git clone https://github.com/healthchecks/healthchecks.git
    
  • Install requirements (Django, ...) into virtualenv:

    pip install -r healthchecks/requirements.txt -r healthchecks/requirements-dev.txt
    
  • macOS only - pycurl needs to be reinstalled using the following method (assumes OpenSSL was installed using brew):

    export PYCURL_VERSION=`cat requirements.txt | grep pycurl | cut -d '=' -f3`
    export OPENSSL_LOCATION=`brew --prefix openssl`
    export PYCURL_SSL_LIBRARY=openssl
    export LDFLAGS=-L$OPENSSL_LOCATION/lib
    export CPPFLAGS=-I$OPENSSL_LOCATION/include
    pip uninstall -y pycurl
    pip install pycurl==$PYCURL_VERSION --compile --no-cache-dir
    
  • Create database tables and a superuser account:

    cd ~/webapps/healthchecks
    ./manage.py migrate
    ./manage.py createsuperuser
    

    With the default configuration, Healthchecks stores data in a SQLite file hc.sqlite in the checkout directory (~/webapps/healthchecks).

  • Run tests:

    ./manage.py test
    
  • Run development server:

    ./manage.py runserver
    

The site should now be running at http://localhost:8000. To access Django administration site, log in as a superuser, then visit http://localhost:8000/admin/

Configuration

Healthchecks reads configuration from environment variables. See the full list of configuration parameters you can set via environment variables.

In addition, Healthchecks reads settings from the hc/local_settings.py file if it exists. You can set or override any standard Django setting in this file. You can copy the provided hc/local_settings.py.example as hc/local_settings.py and use it as a starting point.

If a setting is specified both as environment variable and in hc/local_settings.py, the latter takes precedence.

Accessing Administration Panel

Healthchecks comes with Django's administration panel where you can perform administrative tasks: delete user accounts, change passwords, increase limits for specific users, inspect contents of database tables.

To access the administration panel,

  • if you haven't already, create a superuser account: ./manage.py createsuperuser
  • log into the site using superuser credentials
  • in the top navigation, "Account" dropdown, select "Site Administration"

Sending Emails

Healthchecks must be able to send email messages, so it can send out login links and alerts to users. Specify your SMTP credentials using the following environment variables:

  • Implicit TLS (recommended):

    DEFAULT_FROM_EMAIL = "[email protected]"
    EMAIL_HOST = "smtp.example.org"
    EMAIL_PORT = 465
    EMAIL_HOST_USER = "example-username"
    EMAIL_HOST_PASSWORD = "example-password"
    EMAIL_USE_TLS = False
    EMAIL_USE_SSL = True
    

    Port 465 should be the preferred method according to RFC8314 Section 3.3: Implicit TLS for SMTP Submission. Be sure to use a TLS certificate and not an SSL one.

  • Explicit TLS:

    DEFAULT_FROM_EMAIL = "[email protected]"
    EMAIL_HOST = "smtp.example.org"
    EMAIL_PORT = 587
    EMAIL_HOST_USER = "example-username"
    EMAIL_HOST_PASSWORD = "example-password"
    EMAIL_USE_TLS = True
    

Healthchecks use these environment variables to construct the settings.MAILERS dictionary (a standard Django setting, docs).

Receiving Emails

Healthchecks comes with a smtpd management command, which starts up a SMTP listener service. With the command running, you can ping your checks by sending email messages to [email protected] email addresses.

Start the SMTP listener on port 2525:

./manage.py smtpd --port 2525

Send a test email:

curl --url 'smtp://127.0.0.1:2525' \
    --mail-from '[email protected]' \
    --mail-rcpt '[email protected]' \
    -F '='

Sending Alerts and Reports

Healthchecks comes with a sendalerts management command, which continuously polls database for any checks changing state, and sends out notifications as needed. Within an activated virtualenv, you can manually run the sendalerts command like so:

./manage.py sendalerts

In a production setup, you will want to run this command from a process manager like systemd or supervisor.

Healthchecks also comes with a sendreports management command which sends out monthly reports, weekly reports, and the daily or hourly reminders.

Run sendreports without arguments to run any due reports and reminders and then exit:

./manage.py sendreports

Run it with the --loop argument to make it run continuously:

./manage.py sendreports --loop

Database Cleanup

Healthchecks deletes old entries from api_ping, api_flip, and api_notification tables automatically. By default, Healthchecks keeps the 100 most recent pings for every check. You can set the limit higher to keep a longer history: go to the Administration Panel, look up user's Profile and modify its "Ping log limit" field.

Healthchecks also provides management commands for cleaning up auth_user (user accounts) and api_tokenbucket (rate limiting records) tables, and for removing stale objects from external object storage.

  • Remove user accounts that are older than 1 month and have never logged in:

    ./manage.py pruneusers
    
  • Remove old records from the api_tokenbucket table. The TokenBucket model is used for rate-limiting login attempts and similar operations. Any records older than one day can be safely removed.

    ./manage.py prunetokenbucket
    
  • Remove old objects from

readme truncated — read the full docs on github

Frequently asked questions

Is Healthchecks free to use?

Healthchecks is open source under the BSD-3-Clause licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does Healthchecks do?

Get alerted when cron jobs and scheduled tasks miss their run

What is Healthchecks written in?

Healthchecks is primarily written in Python. Its source is publicly available at https://github.com/healthchecks/healthchecks, and it has 10,338 GitHub stars.