A simple CLI tool to inspect delayed Redis queue jobs in Laravel. Useful for debugging, auditing, and gaining visibility into scheduled or stuck jobs.
Install the package via Composer:
composer require pdmfc/redis-queue-inspectorLaravel will auto-discover the service provider, no manual registration needed.
php artisan queue:inspectThis will inspect the first 50 delayed jobs in the default Redis queue.
php artisan queue:inspectphp artisan queue:inspect --queue=emails --job=SendWelcomephp artisan queue:inspect --from=2025-06-01php artisan queue:inspect --identifier=47004php artisan queue:inspect --uuid=123e4567-e89b-12d3-a456-426614174000php artisan queue:inspect --job=SendInvoice --countphp artisan queue:inspect --queue=emails --job=SendWelcome --limit=2 --jsonShowing 10 jobs (page 1) of 47 matching jobs.
+---------+--------------------------+--------------------------------------+---------------------+
| Queue | Job Name | Job ID | Release At |
+---------+--------------------------+--------------------------------------+---------------------+
| default | App\Jobs\SendWelcome | 123e4567-e89b-12d3-a456-426614174000 | 2025-06-12 21:58:54 |
+---------+--------------------------+--------------------------------------+---------------------+
Tip: Run with --page=2 to see more.
- PHP 8.1+
- Laravel with Redis queue driver enabled
MIT License
Mário Souto
mario.souto@pdmfc.com
