PHPackages                             donor-services/queue-monitor-core - 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. [Queues &amp; Workers](/categories/queues)
4. /
5. donor-services/queue-monitor-core

ActiveLibrary[Queues &amp; Workers](/categories/queues)

donor-services/queue-monitor-core
=================================

Laravel Queue Monitoring Package - Tracks job execution, progress, and failures automatically

v1.0.1(6mo ago)071MITPHPPHP ^8.2CI passing

Since Oct 28Pushed 6mo agoCompare

[ Source](https://github.com/donorservices/queue-monitor-core)[ Packagist](https://packagist.org/packages/donor-services/queue-monitor-core)[ RSS](/packages/donor-services-queue-monitor-core/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (6)Versions (2)Used By (1)

Queue Monitor Core
==================

[](#queue-monitor-core)

Core Laravel Queue Monitoring Package - Tracks job execution, progress, and failures automatically.

Features
--------

[](#features)

- ✅ Automatic job tracking
- ✅ Progress tracking (0-100%)
- ✅ Exception storage
- ✅ Attempt tracking
- ✅ Execution duration
- ✅ Auto-pruning old records
- ✅ Universal Queue Driver Support (Database, Redis, SQS, Beanstalkd, etc.)
- ✅ Laravel Horizon Compatible

Installation
------------

[](#installation)

### From Local Path Repository

[](#from-local-path-repository)

```
composer require donor-services/queue-monitor-core "*"
```

### From Packagist (when published)

[](#from-packagist-when-published)

```
composer require donor-services/queue-monitor-core
```

Configuration
-------------

[](#configuration)

Publish the configuration file:

```
php artisan vendor:publish --tag=queue-monitor-config
```

Usage
-----

[](#usage)

### Basic Usage

[](#basic-usage)

No configuration needed! Just start dispatching jobs and they'll be automatically tracked.

### Progress Tracking

[](#progress-tracking)

Add the `QueueProgress` trait to your job:

```
use DonorServices\QueueMonitor\Core\Traits\QueueProgress;

class ProcessVideoJob implements ShouldQueue
{
    use QueueProgress;

    public function handle()
    {
        for ($i = 0; $i < 100; $i++) {
            // Process video
            $this->setProgress($i);
        }
    }
}
```

### Using the Service

[](#using-the-service)

```
use DonorServices\QueueMonitor\Core\Services\QueueMonitorService;

// Get statistics
$stats = QueueMonitorService::getStats('today');

// Get failed jobs
$failed = QueueMonitorService::getFailedJobs(10);

// Get running jobs
$running = QueueMonitorService::getRunningJobs();
```

Testing
-------

[](#testing)

Run the test suite:

```
composer test
```

License
-------

[](#license)

MIT

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance66

Regular maintenance activity

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity47

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

Unknown

Total

1

Last Release

201d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d2e9b7258fe823938e2bf7aa0ee60ea52d8f50b3f74a1e1bb4397b2c6a853ad8?d=identicon)[donor-services](/maintainers/donor-services)

---

Top Contributors

[![josephwalston](https://avatars.githubusercontent.com/u/11237254?v=4)](https://github.com/josephwalston "josephwalston (1 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/donor-services-queue-monitor-core/health.svg)

```
[![Health](https://phpackages.com/badges/donor-services-queue-monitor-core/health.svg)](https://phpackages.com/packages/donor-services-queue-monitor-core)
```

###  Alternatives

[mpbarlow/laravel-queue-debouncer

A wrapper job for debouncing other queue jobs.

63714.4k1](/packages/mpbarlow-laravel-queue-debouncer)[eyewitness/eye

Eyewitness.io client for Laravel 5 applications

116151.8k](/packages/eyewitness-eye)[therezor/laravel-transactional-jobs

Submit laravel jobs inside transaction. Cancel job after rollback. Proceed after successful commit.

44449.4k](/packages/therezor-laravel-transactional-jobs)[convenia/pigeon

3233.0k](/packages/convenia-pigeon)[baklysystems/laravel-chat-messenger

Laravel chat package

121.8k](/packages/baklysystems-laravel-chat-messenger)

PHPackages © 2026

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