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

Getting Started

Learn how to set up CronRadar and start monitoring your first cron job.

Read more

Ping Endpoint

Use the ping endpoint to report cron job execution status.

Read more

Lifecycle Tracking

Track the full lifecycle of your cron jobs with start, complete, and fail signals.

Read more

Bulk Sync

Automatically sync monitor configurations from your application.

Read more

Was this page helpful?