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.
| Option | Description |
|---|---|
--queue= |
Comma-separated list of queue names (default: default) |
--job= |
Filter by partial job class name |
--from= |
Filter jobs scheduled from this date (Y-m-d) |
--to= |
Filter jobs scheduled up to this date (Y-m-d) |
--limit= |
Number of jobs per page (default: 50) |
--page= |
Page number for pagination (default: 1) |
--count |
Only return the total number of matching jobs |
--identifier= |
Filter jobs that reference this model ID in the payload |
--uuid= |
Filter by exact job UUID (as generated by Laravel when dispatching) |
--json |
Output results in machine-readable JSON format |
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
[email protected]