Description: Cron Monitoring. Monitor nightly backups, weekly reports, cron jobs and background tasks. Receive alerts when your tasks don't run on time.
health checks (25) cron monitoring (10) healthchecks (6) cron job syntax (5) cronjob monitoring (5) monitor cron jobs (4) crontab cheat sheet (4) crontab monitoring (4) cron dashboard (4)
Make HTTP requests to the Ping URL at regular intervals. When the URL is not pinged on time, Upmon will send you an alert. You can monitor any service that can make HTTP requests or send emails.
# m h dom mon dow command 8 6 * * * /home/user/backup.sh && curl -fsS -m 10 --retry 5 -o /dev/null https://upmon.net/992f1447-4579-4d41-bd6e-fb3237853d28 # using curl (10 second timeout, retry up to 5 times): curl -m 10 --retry 5 https://upmon.net/992f1447-4579-4d41-bd6e-fb3237853d28 # using wget (10 second timeout, retry up to 5 times): wget https://upmon.net/992f1447-4579-4d41-bd6e-fb3237853d28 -T 10 -t 5 -O /dev/null # Using Python 3 standard library: import socket import urllib.request try : urllib . re
You can instruct Upmon to look for a particular keyword in the subject line. This is handy when your backup software sends an email after every run, and uses a different subject line depending on success or failure.