✨ 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 Advanced Cron Scheduler: job runtimes

Advanced Cron Scheduler replaces WP-Cron with WP-CLI driven jobs and logs every execution with timestamp, hook, and runtime. SleekView Charts turns the same log into a dashboard of runs per hook, slowest handlers, and execution trends across days.

♾️ Lifetime License available

SleekView Charts dashboard for Advanced Cron Scheduler

From a job log to a cron control dashboard

Advanced Cron Scheduler hands WordPress cron over to a real scheduler. The plugin runs scheduled events via WP-CLI on a Linux cron, logging each run with hook name, arguments, start time, end time, runtime in milliseconds, and exit status. Logs live in a dedicated log option or a custom table the plugin manages, and the admin shows them as a flat list.

SleekView Charts treats that log as a first-class data source. A Number KPI counts runs in the last 24 hours. A Pie chart splits successful runs from failed ones using the status column. A horizontal Bar chart ranks hooks by average runtime, immediately exposing the handlers that eat server time. An Area chart trends runs per hour or per day so the team can spot scheduling gaps and runaway loops.

Because the log lives in the WordPress database, the dashboard refreshes live with every job run. The plugin still owns the scheduler and the WP-CLI bridge. SleekView Charts owns the operational picture that turns a job log into something a team checks at standup instead of when the host complains.

Workflow

From a job log to chart cards

1

Point at the runs log

SleekView Charts indexes the Advanced Cron Scheduler runs log. Hook, args, runtime_ms, status, started_at, and exit_code all become groupable columns inside the dashboard builder.
2

Add the headline KPIs

A Number card for runs in the last 24 hours, a second card for failed runs in the same window, and a calculated card for success rate. Three numbers replace the long scroll through the log screen.
3

Rank the slow hooks

Horizontal bar of average runtime_ms per hook. The cron handlers that quietly eat seconds per run surface as the longest bars, ready for a refactor or a job split.
4

Trend cron load

An Area chart of runs per hour shows when the scheduler is busiest. Backups at 3am stand out next to user-driven jobs during the day, making capacity planning a visual exercise.

Sample dashboard

Cron job runtime dashboard

Four chart cards built on top of Advanced Cron Scheduler's own log, ready to render execution KPIs the plugin's flat log screen never visualises.
Number · Default

Runs in the last 24 hours

Headline count of runs in the plugin's log for the last day, with a delta against the previous day. A sudden drop is the clearest signal that the Linux cron stopped firing wp-cli loops.
Count
Pie · Donut

Runs by status

Donut splitting runs across success and failure from the status column on the log table. The red slice is the operations alert that a recurring job has stopped completing successfully and needs attention.
Count group by status
Bar · Horizontal

Average runtime per hook

Horizontal bar of average runtime_ms grouped by hook. Plugins that block for seconds on every cron run surface immediately, giving the team a refactor list ranked by real impact.
Average(runtime_ms) group by hook
Area · Gradient

Runs per hour

Gradient area trending runs per hour from the started_at timestamp. The 3am backup peak and the all-day continuous jobs look different on the chart, making capacity planning a one-screen exercise.
Count group by started_at

Comparison

Default Advanced Cron Scheduler log vs SleekView Charts

Default scheduler log screen

  • Run log is a flat paginated list, no chart cards or KPIs
  • No success-rate KPI even though status is stored on every row
  • Average runtime per hook isn't visualised in the plugin UI
  • No hourly trend chart of runs, only a sortable list
  • Comparing two days requires manually filtering and pivoting

SleekView Charts

  • Reads the Advanced Cron Scheduler runs log as a live data source
  • Number KPIs for runs, failures, and computed success rate
  • Donut of status with successful and failed runs side by side
  • Average runtime_ms per hook as a sortable horizontal bar
  • Area trend of runs per hour from the started_at timestamp

Features

What SleekView Charts gives you for Advanced Cron Scheduler

Real cron telemetry

Number cards for runs and failures plus an hourly trend turn cron from an invisible subsystem into a tracked one. Standups include a cron screen alongside uptime and queue depth.

Failure pulse

A donut of status surfaces the failed-run share at a glance. Spikes in the red slice align with deploy windows or upstream API outages, giving on-call a head start.

Slow handler ranking

Average runtime per hook as a horizontal bar shows which cron handlers eat seconds per run. The team prioritizes refactors with data instead of folklore.

Audience

Where cron-job charts pay off

Hosting and SRE

Hourly run charts live next to CPU and memory. When the host complains about a spike, the chart points directly at the hook that needs attention.

Plugin developers

Slow-handler ranking turns optimization into an evidence-based exercise. Refactor the top three hooks and the average-runtime bar drops visibly the next day.

Agencies

Client retainers include a monthly cron-health report. Success rate, slowest hooks, and total runs become a screenshot the operations review actually reads.

The bigger picture

Real cron deserves real telemetry

Once a site outgrows WP-Cron and moves to a real Linux scheduler driving WP-CLI, the failure modes change. Jobs still run on time, but the question is no longer whether cron is fired; it is whether each handler finished cleanly, how long it took, and which job is slowing the others down. Advanced Cron Scheduler logs all of that.

Hook, arguments, start time, runtime in milliseconds, and exit status are written on every run. What the plugin's admin does with that log is render a paginated list and let the operator sort it. SleekView Charts turns the same data into a dashboard of runs per hour, failure share, average runtime per hook, and total executions in the last day.

Hosting teams pin it next to server metrics. Plugin developers use it to find refactor targets. Agencies turn it into a monthly client report.

The log was always the right data; the dashboard is finally the right way to read it.

Questions

Common questions about SleekView Charts for Advanced Cron Scheduler

The plugin's runs log, regardless of whether it lives in a dedicated table or in the options API. SleekView Charts reads the same columns the admin screen does: hook, args, started_at, runtime_ms, status, and exit_code.

 

Yes. Use a calculated card with successful runs divided by total runs, grouped by hook. The result is a sortable bar chart with one bar per hook, immediately surfacing the recurring jobs that fail most often.

 

No. SleekView Charts reads whatever the installed version of Advanced Cron Scheduler writes. The dashboard works the same whether the site runs the free or premium tier, as long as the runs log is enabled.

 

Yes. The hook filter applies at the dashboard level. Pick one cron handler and every chart, including the hourly trend and the failure donut, reshapes to that handler alone. Useful when investigating a single job.

 

Advanced Cron Scheduler records start and end timestamps for each run and writes the difference as runtime_ms. SleekView Charts reads that column directly. No additional instrumentation is required to render the duration charts.

 

No. SleekView Charts paginates and caches large datasets, and all aggregations run as indexed SQL group-bys. Even sites with months of run history render the dashboard cards in well under a second.

 

Yes. SleekView Charts supports threshold alerts on Number cards. Set the failed-runs-in-last-24h card to alert above a baseline and the team gets a notification the moment a recurring job starts failing.

 

No. Advanced Cron Scheduler still owns the per-run detail view, the manual trigger, and the WP-CLI bridge. SleekView Charts adds the dashboard layer on top that the plugin's list view does not provide.

 

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