✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount

SleekView Charts for WP Crontrol

SleekView Charts reads the cron_array option that WP Crontrol exposes, plus a small captured run-log table, and renders event counts, recurrence splits, per-hook activity and next-run distribution as Number, Pie, Bar and Area cards.

♾️ Lifetime License available

SleekView Charts dashboard for WP Crontrol

WP Crontrol shows every event, just not the shape

WP Crontrol is the canonical tool for managing WP-Cron: list every scheduled event, edit recurrences, add or remove hooks, and run a PHP code event on a schedule. The list view is the right surface for finding or fixing one event. It is not how anyone reads cron as a system.

SleekView Charts reads the same cron_array WP Crontrol surfaces, plus a small run-log captured by a tiny mu-plugin hooked into the cron action. A Number card counts scheduled events. A Pie splits them by recurrence (hourly, twicedaily, daily, custom). A Bar groups runs by hook so the busiest tasks surface as their own rows. An Area trends average runtime per day, which is where a slow drift on a checkout-cleanup hook becomes visible weeks before it starts failing.

WP Crontrol's per-event admin stays where it is for one-off operations. The chart surface is the part that lets ops, agencies and performance engineers reason about the cron schedule as a whole, instead of scrolling a long list of next-run timestamps.

Workflow

Turn WP Crontrol's data into a dashboard

1

Read the cron schedule

SleekView reads the cron_array option WP Crontrol surfaces, flattening it into rows with hook, recurrence, next_run, args and is_php_event.
2

Capture run history

A small mu-plugin hooks each cron action and writes one row per run into wp_cron_runs with hook, started_at, duration and status. SleekView reads that table for runtime cards.
3

Compose the chart cards

Pick Number, Pie, Bar, Area or Radar cards. Group by hook, recurrence, status, is_php_event or started_at, and aggregate as Count, Sum, Average, Minimum or Maximum on duration.
4

Save and gate

Name the dashboard ("Cron system health", "PHP code events") and gate it by WordPress capability so dev and ops see the right slices.

Sample dashboard

Charts you can build from WP Crontrol data

Each card below reads from the same cron_array and captured run-log WP Crontrol's per-event admin already exposes. Mix them for an aggregate cron-health surface beyond the list view.
Number · Default

Scheduled events

Single KPI counting events currently in cron_array. The anchor metric for any WP-Cron review or migration audit.
Count
Pie · Donut text

Events by recurrence

Splits scheduled events across hourly, twicedaily, daily, single and any custom recurrence WP Crontrol has registered. Shows the cadence shape of the install.
Count group by recurrence
Bar · Horizontal

Runs per hook

Counts captured runs grouped by hook. Surfaces the busiest cron tasks alongside the rarely-running ones that may have been registered and forgotten.
Count group by hook
Area · Gradient

Average runtime per day

Time series of average runtime across captured runs. Slow drift is a leading indicator of a hook that needs attention before it crosses a timeout.
Average(duration) group by started_at

Comparison

Default WP Crontrol admin vs SleekView Charts

Default cron list

  • Excellent per-event admin with no aggregate view of the schedule
  • No visual split of events by recurrence or hook category
  • Run history is not exposed by the plugin and needs to be captured separately
  • Heavy hooks blend into a long list rather than standing out
  • No way to share a read-only cron snapshot outside the WP admin

SleekView Charts

  • KPI card for total scheduled events on the install
  • Pie split by recurrence
  • Bar of captured runs per hook for the operator view
  • Area trend of average runtime per day for drift detection
  • Same cron_array and run-log feed both chart and table views

Features

What SleekView Charts gives you for WP Crontrol

Beyond the events list

Render cron_array as Number, Pie, Bar and Area cards so the cadence, concentration and drift of cron are visible at a glance.

PHP code events as their own slice

Filter the dashboard to is_php_event = 1 and see only the events backed by WP Crontrol's PHP code editor. Useful for auditing custom scheduled logic on a long-running install.

Operator-grade share

Export the runs behind a card as CSV or share the dashboard URL with the developer that owns the offending hook. Cron conversations start with real data.

Audience

Who builds WP Crontrol charts dashboards with SleekView

Backend developers

Audit cron after a plugin upgrade. See which hooks doubled in count or runtime, then jump back to WP Crontrol to inspect or rewrite the schedule.

Performance engineers

Watch the runtime trend per hook to catch a slowing task before it crosses the timeout and starts failing in production.

Agency ops

Hand each client a read-only cron-health dashboard. Cron stops being an internal black box and becomes a number anyone can quote in a status review.

The bigger picture

Why the WP-Cron list deserves an aggregate layer

WP Crontrol is the most respected cron tool in the WordPress ecosystem, and for good reason: its per-event admin handles every operation the schedule needs. The trouble starts at the system level. Long-running sites accumulate dozens or hundreds of scheduled events, half from plugins that have come and gone, and the questions the team actually has are aggregate: how concentrated is the schedule, which hooks run most often, which are slowing down, which custom PHP events are still on the books.

Those questions are not what an events list answers cleanly. SleekView Charts reads the same cron_array WP Crontrol surfaces and adds a small captured run-log to produce KPI, pie, bar and trend cards on the same data. The plugin stays the per-event source of truth.

The chart surface is the missing operator layer that turns hundreds of cron rows into a system you can actually reason about.

Questions

Common questions about SleekView Charts for WP Crontrol

No. SleekView reads the cron_array option directly, which WP Crontrol already surfaces. For runtime charts a tiny mu-plugin captures runs into a separate log table. WP Crontrol's own admin stays unchanged.

 

No. Reads come from cron_array (an autoloaded option WordPress loads on every request) and an indexed run-log table. Both are cheap to query and never duplicated on the SleekView side.

 

Yes. WP Crontrol's PHP code events are marked in cron_array and SleekView surfaces that flag as a column. Filter the dashboard to is_php_event = 1 and the whole view narrows to custom scheduled PHP only.

 

Yes. Group by started_at on an Area or Line card with an Average aggregation on duration, then filter by hook for a single task. Useful for catching a hook that started taking three times longer after an update.

 

No. SleekView reads cron_array and the run-log; it never adds, removes or edits events. Triggering, rescheduling and deleting events still happens inside WP Crontrol's own UI exactly as before.

 

Yes. Add a filter for hook = wp_scheduled_delete or any specific hook and the whole dashboard narrows to that hook only. Pin one per critical task for a dedicated cockpit.

 

No. WP Crontrol stays the per-event operations tool. SleekView Charts is the aggregate surface on the same data, useful exactly when the question is system-wide rather than about one event.

 

Yes. Any filtered set behind a chart card exports as CSV. Hand a developer the runs behind the runtime trend card for last month, scoped to one hook, and the conversation starts with real data.

 

Pricing

More than 1000+
happy customers

Explore our flexible licensing options tailored to your needs. Upgrade your license anytime to access more features, or opt for a lifetime license for ongoing value, including lifetime updates and lifetime support. Our hassle-free upgrade process ensures that our platform can grow with you, starting from whichever plan you choose.

Starter

€79

EUR

per year

  • 3 websites
  • 1 year of updates
  • 1 year of support

Pro

€149

EUR

per year

  • Unlimited websites
  • 1 year of updates
  • 1 year of support

Lifetime ♾️

Most popular

€249

EUR

once

  • Unlimited websites
  • Lifetime updates
  • Lifetime support

...or get the Bundle Deal
and save €250 🎁

The Bundle (unlimited sites)

Pay once, own it forever

Elevate your WordPress site with our exclusive plugin bundle that includes all of our premium plugins in one package. Enjoy lifetime updates and lifetime support. Save significantly compared to buying plugins individually.

What’s included

  • SleekAI

  • SleekByte

  • SleekMotion

  • SleekPixel

  • SleekRank

  • SleekView