
Dashboard overview — scheduled jobs with live status indicators, overdue/failing badges, and the 8-hour schedule strip
WordPress developers fly blind with WP-Cron. The core tools give you no visibility into whether scheduled jobs are actually running, how long they take, or when they last fired.
Cron Pulse adds a clean dashboard under Tools Cron Pulse that shows everything you need at a glance:
wp cronpulse status for scripting health checks across sitesGET /wp-json/cronpulse/v1/status for remote dashboards, authenticated like any other WP REST routeThis plugin stores cron execution data (hook name, timestamp, duration) in the WordPress options table. No data is sent externally unless you explicitly configure a webhook URL under alert settings, in which case alert payloads are POSTed to that URL. The REST API endpoint is read-only and pull-based — nothing is sent anywhere on its own. If you enable SMTP, your SMTP credentials are stored in the WordPress options table, same as any other plugin setting — no third-party service receives them except the SMTP server you configure. The email log stores recipient addresses and subjects for emails Cron Pulse has sent. All data is deleted on plugin uninstall.