jsefton / laravel-queue-logger
Creates log of jobs being processed from the queue
Installs: 371
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/jsefton/laravel-queue-logger
Requires
- laravel/framework: >=7.0
README
Creates a log of all queue jobs in a database table to help with auditing jobs.
Able to store and provide:
- Job
- Queue Connection
- Started Processing DateTime
- Processed DateTime
- Status
- Failed DateTime
- Failed Error Message
Installation
composer require jsefton/laravel-queue-logger
Run migrations to create 'queue_logs' table:
php artisan migrate
This package will automatically register the event listeners and data will be inserted within the 'queue_logs' table.
An eloquent model exists if you wish to query the data back out as: JSefton\QueueLogger\QueueLog
Please note currently for Laravel 7+ until tested and verified in lower versions.