PHP SDK

Cron monitoring for PHP

Monitor PHP cron jobs and scheduled tasks. Works with vanilla PHP, Laravel, Symfony, WordPress. Get alerts when jobs fail or don't run on schedule.

// Install
composer require cronradar/php

<?php
require 'vendor/autoload.php';

processOrders();

CronRadar::monitor(
    'orders',
    '0 * * * *'
);

What goes wrong

PHP Cron Problems

Scheduled tasks fail without logs or alerts. Issues go undetected for days.

Silent Script Failures

Scripts crash without alerts. Error logs are hard to find. Cron jobs stop running for days.

Crontab Visibility

No visibility into cron execution. Manual log checking required to debug failures.

Server Timeout Issues

Scripts timeout without clear logs. Memory limits and database connection failures go unnoticed.

Setup

Add monitoring to your PHP code.

After your job completes successfully, record it with CronRadar.

Code Examples

Basic Cron
<?php
processOrders();
CronRadar::monitor('orders', '0 * * * *');

What you get

Works With Every PHP Framework

Drop into any existing codebase. No framework requirements.

Vanilla PHP

Works with plain PHP scripts. No framework needed.

Laravel Support

Special Laravel package with auto-discovery.

Symfony Compatible

Works with Symfony console commands.

WordPress Ready

Monitor wp-cron jobs and scheduled events.

Never Throws Exceptions

Won't break your jobs. All errors are caught internally.

5 Second Timeout

HTTP calls timeout automatically. Won't block execution.

Related packages

Extend PHP SDK further.

CronRadar for Laravel

Extension

Auto-discover and monitor all Laravel scheduled tasks with zero configuration

Start Monitoring PHP Cron Jobs

14-day free trial. No credit card required.

Works with vanilla PHP, Laravel, Symfony, WordPress

Cron Monitoring for PHP | Cronradar