CronRadar Documentation
Using an AI coding agent? Grab the entire docs as one document.
/llm ↗Cron monitoring with framework auto-discovery. Decorate a job — CronRadar registers it, watches its schedule, and alerts when something fails or misses a run.
Quickstart
If your scheduler is Hangfire, Quartz, Celery, or Laravel, install the matching SDK and add one line — every recurring job is monitored. Everything else hits the HTTP API directly.
services.AddHangfire(config =>
config.MonitorAll(apiKey: "ck_app_demo_key")
);
The first ping with ?schedule= self-registers the monitor — no dashboard setup. The full walkthrough covers integration, authentication, verification, and alerts.
Guides
Lifecycle Tracking
Track the full lifecycle of your cron jobs with start, complete, and fail signals.