LaravelPackages.net
Acme Inc.
Toggle sidebar
jsefton/laravel-queue-logger

Creates log of jobs being processed from the queue

2.285
0
1.0.2
About jsefton/laravel-queue-logger

jsefton/laravel-queue-logger is a Laravel package for creates log of jobs being processed from the queue. It currently has 0 GitHub stars and 2.285 downloads on Packagist (latest version 1.0.2). Install it with composer require jsefton/laravel-queue-logger. Discover more Laravel packages by jsefton or browse all Laravel packages to compare alternatives.

Last updated

Laravel Queue Logger

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.

Comments