Call the ping URL at the end of your script. Fire-and-forget is fine.
// At the end of your job:
fetch("https://crondash.dev/ping/YOUR_KEY").catch(() => {})Ping at the end of your cron handler.
cron.schedule("0 * * * *", async () => {
await runMyJob()
fetch("https://crondash.dev/ping/YOUR_KEY").catch(() => {})
})CronDash is in early access. Drop your email and we'll send you credentials.
More docs