HealthyCron HealthyCron
Dashboard
Getting Started / Quick Start

Quick Start

Add your first monitor and receive your first alert in under 5 minutes.

Step 1 — Create a monitor

Click + New Monitor in the dashboard. Give it a descriptive name and pick either a simple interval or a cron expression schedule that matches your script.

Screenshot Placeholder

Step 2 — Copy your ping URL

Once created, your monitor will be assigned a unique ping URL. This is the URL your job needs to request when it finishes.

URL Endpoint
https://healthycron.io/ping/{uuid}

Step 3 — Add to your cron job

Append the HTTP request to the end of your scheduled script. Here are examples for common languages.

BASH
# Using cron
0 * * * * /path/to/script.sh && curl -fsS -m 10 --retry 3 https://healthycron.io/ping/{uuid} > /dev/null

Step 4 — Trigger a test ping

Open your terminal and make an HTTP request to your monitor's URL to confirm it works. The status indicator on your dashboard will immediately turn green.

TERMINAL
curl -fsS https://healthycron.io/ping/{your-uuid}
That's it
HealthyCron will alert you if this job stops running. You can now relax and focus on building your application.