Integration

Supabase edge cron is deployed, but production is drifting

Confirm every scheduled function run with completion pings and alerting.

supabaseserverlesscron
What breaks when this goes silent

When scheduled edge functions degrade, data sync and cleanup tasks quietly fall behind.

  • Silent misses create stale product data
  • Edge logs are reactive, not proactive
  • No simple heartbeat per critical function
How it works

Step 1

Attach success/fail ping calls to each function run

Step 2

Tune expected interval and grace windows

Step 3

Use alerts to catch drift before customers do

Copy and ship

Supabase function ping

await fetch('https://silentfail.dev/api/ping/YOUR_TOKEN/success', {
  method: 'POST'
});
See the green flip in seconds
curl -X POST"https://silentfail.dev//api/demo/ping"
Click to see it flip green

Built for developers. No credit card. Free for 1 check.

Built for production workloads

Lightweight ping API for cron, queue, and serverless runtimes.

Alerting channels: email + Slack, with event history for audits.

Public status available at /status.

FAQ
Does this require Supabase extension setup?

No extra extension is required.

Can I track function failures?

Yes, call the fail endpoint on error paths.

Can I share one token?

Prefer one token per function for clear ownership.

Can I monitor latency?

Include duration metadata on your ping requests.

Will this work for manual triggers too?

Yes, any invocation can send pings.

Supabase Edge Function Monitoring | SilentFail | SilentFail