shipped on KestrelKit in an afternoon

Your cron jobs fail silently.
Hear about it.

End every job with one curl. If it doesn't check in on schedule, you get an email before your users notice the backups stopped.

Start monitoring Built with KestrelKit

crontab -e
# nightly backup — pings CronPulse on success
0 2 * * * /opt/backups/nightly.sh && curl -fsS https://cronpulse.dev/ping/a1b2c3

# 02:00 → ping lands → up
# 02:00 → silence    → [DOWN] nightly-backup missed its check-in

integrate/

One line at the end of any script, container, or scheduled task. If it can curl, it can check in.

detect/

Each job has an expected interval and a grace window. Silence past both means it's down — not flaky, down.

alert/

An email within a minute of the missed window. It clears itself on the next successful ping.