Quickstart: Cron Job Monitoring
1. Create a Cron webhook
- Open cloud.seiri.app → Core → Webhooks.
- Click + Create Webhook.
- Choose type Cron, set the cron expression and grace period.
- Copy the endpoint URL from the ENDPOINT column (endpoint ID looks like
acme-demo:YOUR_REF).
2. Ping after the job
curl -fsS -m 10 https://ping.seiri.app/webhook/acme-demo:YOUR_REF/success
Or from Node.js:
await fetch("https://ping.seiri.app/webhook/acme-demo:YOUR_REF/success", {
method: "GET",
});
On failure, call /fail instead of /success.
3. Verify
- Confirm the check-in under webhook stats (bar-chart icon) or webhook details.
- Review schedule adherence under Services → Cron Jobs.
Use
ping.seiri.appfor heartbeats — nevercloud.seiri.app.
Full recipe (Python, crontab, agent checklist): Integrate a job.