academe/laravel-queue-monitor is a Laravel package for a laravel package to monitor queue jobs..
It currently has 3 GitHub stars and 33 downloads on Packagist (latest version 2.0.2).
Install it with composer require academe/laravel-queue-monitor.
Discover more Laravel packages by academe
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel package to monitor queue jobs. Logs certain information about queue jobs in a database table:
--tries is being used the attempt number for each jobThis is a fork of gilbitron/laravel-queue-monitor I had some specific project requirements, but but no time to generate separate PRs for each change I've made to the original project, and no guarantee they would be accepted. So chose your branch according to your requirements :-)
Install the composer package:
composer require academe/laravel-queue-monitor
Add the service provider in config/app.php (this step is not necessary for Laravel 5.5+):
/*
* Package Service Providers...
*/
Academe\LaravelQueueMonitor\LaravelQueueMonitorProvider::class,
Run a migration to setup the queue_monitor database table:
php artisan migrate
All queue jobs will now be monitored and results stored to the queue_monitor database table.
No other configuration is required.
To save custom data with the queue monitor results you need to include the QueueMonitorData
trait in your Job and use the saveQueueMonitorData() method. For example:
<?php
namespace App\Jobs;
use Academe\LaravelQueueMonitor\Jobs\QueueMonitorData;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class ExampleJob implements ShouldQueue
{
use InteractsWithQueue, Queueable, SerializesModels, QueueMonitorData;
protected $results = 0;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$this->results = rand(1, 100);
$this->saveQueueMonitorData([
'results' => $this->results,
]);
// ...
}
}
Laravel Queue Monitor was created by Gilbert Pellegrom from Dev7studios. Released under the MIT license.