goedemiddag/laravel-schedule-monitor

Monitoring for scheduled jobs
3,398 4
Install
composer require goedemiddag/laravel-schedule-monitor
Latest Version:v2.1.0
PHP:^8.1
License:MIT
Last Updated:Apr 9, 2026
Links: GitHub  ·  Packagist
Maintainer: Goedemiddag

Laravel schedule monitor

This package allows you to monitor your scheduled commands and jobs.

Supported implementations:

Installation

First use composer to install the package using the following command

composer require goedemiddag/laravel-schedule-monitor

Usage

Sentry

Chain the monitorWithSentry method onto the schedule. This method accepts the UUID provided by Sentry.

protected function schedule(Schedule $schedule)
{
    $schedule->command(Inspire::class)
        ->daily()
        ->monitorWithSentry('[uuid]')
}

Better Stack

Chain the monitorWithBetterstack method onto the schedule. This method accepts the ID provided by Better Stack.

protected function schedule(Schedule $schedule)
{
    $schedule->command(Inspire::class)
        ->daily()
        ->monitorWithBetterstack('[id]')
}

Related Packages

studio/laravel-totem

A Laravel package to manage your cron jobs through a beautiful dashboard

1,269,880 1,816
indatus/dispatcher

Schedule your artisan commands within your application's source code

954,027 1,045
cronboy/cronboy

Cronboy - Schedule Jobs For Laravel

50 11
coreproc/raven-laravel

A Laravel 5.1 library that easily integrates raven-php to centralize your logs u...

2,888 8