PHPackages                             pdmfc/redis-queue-inspector - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Caching](/categories/caching)
4. /
5. pdmfc/redis-queue-inspector

ActiveLibrary[Caching](/categories/caching)

pdmfc/redis-queue-inspector
===========================

A simple cli command to inspect Laravel Redis queues.

v0.1.4(11mo ago)03.9k↓13%MITPHPPHP ^8.1.0CI passing

Since Jun 8Pushed 11mo agoCompare

[ Source](https://github.com/pdmfc/redis-queue-inspector)[ Packagist](https://packagist.org/packages/pdmfc/redis-queue-inspector)[ RSS](/packages/pdmfc-redis-queue-inspector/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (5)Versions (9)Used By (0)

🧭 Redis Queue Inspector
=======================

[](#-redis-queue-inspector)

A simple CLI tool to inspect **delayed Redis queue jobs** in Laravel. Useful for debugging, auditing, and gaining visibility into scheduled or stuck jobs.

📥 Installation
--------------

[](#-installation)

Install the package via Composer:

```
composer require pdmfc/redis-queue-inspector
```

Laravel will auto-discover the service provider, no manual registration needed.

🚀 Basic Usage
-------------

[](#-basic-usage)

```
php artisan queue:inspect
```

This will inspect the first 50 delayed jobs in the `default` Redis queue.

🔍 Options
---------

[](#-options)

OptionDescription`--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✅ Examples
----------

[](#-examples)

### Show all delayed jobs in the default queue

[](#show-all-delayed-jobs-in-the-default-queue)

```
php artisan queue:inspect
```

### Show jobs in the `emails` queue that contain "SendWelcome" in the class name

[](#show-jobs-in-the-emails-queue-that-contain-sendwelcome-in-the-class-name)

```
php artisan queue:inspect --queue=emails --job=SendWelcome
```

### View jobs scheduled from a specific date

[](#view-jobs-scheduled-from-a-specific-date)

```
php artisan queue:inspect --from=2025-06-01
```

### Search jobs that reference a model ID in the payload

[](#search-jobs-that-reference-a-model-id-in-the-payload)

```
php artisan queue:inspect --identifier=47004
```

### Look up a job by UUID

[](#look-up-a-job-by-uuid)

```
php artisan queue:inspect --uuid=123e4567-e89b-12d3-a456-426614174000
```

### Only return a count of matching jobs

[](#only-return-a-count-of-matching-jobs)

```
php artisan queue:inspect --job=SendInvoice --count
```

### Output results in JSON format

[](#output-results-in-json-format)

```
php artisan queue:inspect --queue=emails --job=SendWelcome --limit=2 --json
```

📌 Output Example
----------------

[](#-output-example)

```
Showing 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.

```

🛠 Requirements
--------------

[](#-requirements)

- PHP 8.1+
- Laravel with Redis queue driver enabled

📄 License
---------

[](#-license)

MIT License

👤 Author
--------

[](#-author)

**Mário Souto**

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance52

Moderate activity, may be stable

Popularity23

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

5

Last Release

332d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/58304323?v=4)[PDMFC](/maintainers/pdmfc)[@pdmfc](https://github.com/pdmfc)

---

Top Contributors

[![msouto346](https://avatars.githubusercontent.com/u/21067326?v=4)](https://github.com/msouto346 "msouto346 (3 commits)")

---

Tags

phplaravelredisqueueinspector

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/pdmfc-redis-queue-inspector/health.svg)

```
[![Health](https://phpackages.com/badges/pdmfc-redis-queue-inspector/health.svg)](https://phpackages.com/packages/pdmfc-redis-queue-inspector)
```

###  Alternatives

[awssat/laravel-visits

Laravel Redis visits counter for Eloquent models

975163.6k2](/packages/awssat-laravel-visits)[yangusik/laravel-balanced-queue

Laravel queue management with load balancing between partitions (user groups)

786.4k](/packages/yangusik-laravel-balanced-queue)[kevindees/laravel-redis-queue

Redis queue managment for laravel.

1734.1k](/packages/kevindees-laravel-redis-queue)[craftsys/laravel-redis-session-enhanced

Enhanced redis driver for sessions in Laravel

106.6k](/packages/craftsys-laravel-redis-session-enhanced)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
