Expected heartbeat
Your job finishes and calls its private heartbeat URL.

HEARTBEAT MONITORING
A website check asks whether a service responds. A heartbeat check asks whether your scheduled work is still happening.
GET /h/EXAMPLE_KEY/EXAMPLE_TOKENTHE OTHER DIRECTION
Create a heartbeat with its own shared secret. Your task calls the endpoint each time it completes; Upnora checks whether that call arrived within the expected interval and grace period.
Your job finishes and calls its private heartbeat URL.
The expected time passes without a valid ping.
The heartbeat becomes unavailable so you can investigate the task.
JOB MONITORING
Heartbeat monitoring is useful for work that runs in the background: database backups, billing jobs, imports, exports, workers and data synchronization.
Monitor a website or service too →Backup heartbeat
Last valid ping2 minutes agoEvery 5 minutes · Grace 2 minutesWHY HEARTBEATS MATTER
A normal uptime monitor can tell you that a website responds. It cannot always tell you whether a nightly export completed, whether a worker is consuming its queue, or whether a backup process silently stopped. Heartbeat monitoring closes that gap by letting the job report its own successful execution.
The heartbeat URL is unique to the monitor and protected by a shared secret. Your script or worker calls it when the expected work is complete. Upnora stores the last valid ping and compares it with the interval and grace period you configure.
This model works with existing schedulers and deployment setups. You keep control of the cron job, worker or task runner; Upnora provides the missing signal and the alert when that signal becomes overdue.
FAQ
Heartbeat monitoring waits for your job or process to call a unique Upnora URL. A missing call means the expected work may not have completed.
After the configured interval and grace period pass, Upnora marks the heartbeat as unavailable and can send an alert.
Cron jobs, workers, backups, imports, exports and other tasks that can make an HTTP request can send a heartbeat.
MONITOR THE WORK BEHIND YOUR SERVICE