aryeo/monitored-jobs is a Laravel package for monitor for your laravel jobs..
It currently has 13 GitHub stars and 29.912 downloads on Packagist (latest version v5.0.0).
Install it with composer require aryeo/monitored-jobs.
Discover more Laravel packages by aryeo
or browse all Laravel packages to compare alternatives.
Last updated
This package tracks the status and history of your queued jobs by hooking into the events that Laravel fires for its queue system.
We store this data in a database table, monitored_jobs.
composer require aryeo/monitored-jobs
You can optionally publish the configuration file, which allows you to configure:
To publish the config file:
php artisan vendor:publish --tag=monitored-jobs
To control whether any job is monitored, set the monitored-jobs.enabled configuration value.
There are two configuration options for filtering which jobs are monitored: include_jobs and exclude_jobs. The default value for both config options is null, which will include any job class.
'include_jobs' => null means we are not setting the config option, so all jobs are monitored'include_jobs' => [] means we are setting the config option to include no jobs, meaning no jobs are monitoredThe exclude_jobs option will be checked first and will skip monitoring the job if it is found to be excluded.
The MonitoredJob model is setup to use Laravel's model pruning: https://laravel.com/docs/8.x/eloquent#pruning-models.
In order for the models to be pruned, you must setup the command via the scheduler:
protected function schedule(Schedule $schedule)
{
$schedule->command('model:prune')->daily();
}
You can adjust how long the monitored job records are kept for via the config file:
'prune_after_days' => 14,
The package will attempt to pull tags off of job classes. It does this by either using the tags method on the job class, or by pulling the arguments off of the job's constructor. When pulling the arguments off the constructor:
{$class}_{$KEY}