Skip to main content

Quickstart: Cron Job Monitoring

1. Create a Cron webhook

  1. Open cloud.seiri.appCore → Webhooks.
  2. Click + Create Webhook.
  3. Choose type Cron, set the cron expression and grace period.
  4. 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.app for heartbeats — never cloud.seiri.app.

Full recipe (Python, crontab, agent checklist): Integrate a job.