goedemiddag/laravel-schedule-monitor is a Laravel package for monitoring for scheduled jobs.
It currently has 4 GitHub stars and 3.251 downloads on Packagist (latest version v2.1.0).
Install it with composer require goedemiddag/laravel-schedule-monitor.
Discover more Laravel packages by goedemiddag
or browse all Laravel packages to compare alternatives.
Last updated
This package allows you to monitor your scheduled commands and jobs.
Supported implementations:
First use composer to install the package using the following command
composer require goedemiddag/laravel-schedule-monitor
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]')
}
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]')
}