Previous upgrade guides
Version 4.0 added the ability to retry jobs. For this two new...
Unclaimed project
Are you a maintainer of Laravel-Queue-Monitor? Claim this project to take control of your public changelog and roadmap.
Changelog
Monitoring Laravel Jobs with your Database
Version 4.0 added the ability to retry jobs. For this two new...
Version 3.0 introduced many database related changes. Make sure to follow this upgrade guide before if you come from version 2.
queue-monitor:stale command to mark jobs as stalequeue-monitor:purge command to delete old monitor entiresThe minimum PHP version is 8.0.
Version 3.0 adds a new status column to...
Add the following fields to your queue monitor table:
exception_message (string, nullable)exception_class (long text, nullable)The job trait has been renamed to a more intuitive name.
- use romanzipp\QueueMonitor\Traits\QueueMonitor;
+ use romanzipp\QueueMonitor\Traits\IsMonitored;
Laravel 7 support