PHPackages                             panix/mod-queue - 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. panix/mod-queue

ActivePixelion-module[Queues &amp; Workers](/categories/queues)

panix/mod-queue
===============

Queue module

07PHP

Since Sep 7Pushed 1y ago1 watchersCompare

[ Source](https://github.com/andrtechno/mod-queue)[ Packagist](https://packagist.org/packages/panix/mod-queue)[ RSS](/packages/panix-mod-queue/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Yii2 Queue Analytics Module
===========================

[](#yii2-queue-analytics-module)

The module collects statistics about working of queues of an application, and provides web interface for research. Also the module allows to stop and replay any jobs manually.

[![Latest Stable Version](https://camo.githubusercontent.com/e1a148eb639c51a732a4f3dad95118fc16bb3efee1436af4239c062e19106aeb/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d71756575652f762f737461626c65)](https://packagist.org/packages/panix/mod-queue)[![Total Downloads](https://camo.githubusercontent.com/690c59e7dbad146c15bfd5403ee9d7c5259de16ca19eb6771c434c6fde80ccab/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d71756575652f646f776e6c6f616473)](https://packagist.org/packages/panix/mod-queue)[![Monthly Downloads](https://camo.githubusercontent.com/dd9b85a52a401a1f036720aa9a63326eb0f382cfb07a1ddf630f5f55cdf2617d/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d71756575652f642f6d6f6e74686c79)](https://packagist.org/packages/panix/mod-queue)[![Daily Downloads](https://camo.githubusercontent.com/4290f71b53228bd5402b64de50634f31d6c6660ef41fe23b1f48c458121b7867/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d71756575652f642f6461696c79)](https://packagist.org/packages/panix/mod-queue)[![Latest Unstable Version](https://camo.githubusercontent.com/c4d8def035f84f5b95e7f3cb73fd4f83a86f8697ffa0f19a31975c7220a847ca/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d71756575652f762f756e737461626c65)](https://packagist.org/packages/panix/mod-queue)[![License](https://camo.githubusercontent.com/1ee6774b41836a66c7deb54d44290167a9b399eac8a997ac29b074cd301e10ae/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d71756575652f6c6963656e7365)](https://packagist.org/packages/panix/mod-queue)

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

[](#installation)

The preferred way to install the extension is through [composer](http://getcomposer.org/download/). Add to the require section of your `composer.json` file:

```
$ composer require panix/mod-queue
```

Usage
-----

[](#usage)

To configure the statistics collector, you need to add monitor behavior for each queue component. Update common config file:

```
return [
    'components' => [
        'queue' => [
            // ...
            'as jobMonitor' => \panix\mod\queue\JobMonitor::class,
            'as workerMonitor' => \panix\mod\queue\WorkerMonitor::class,
        ],
    ],
];
```

There are storage options that you can configure by common config file:

```
return [
    'container' => [
        'singletons' => [
            \panix\mod\queue\Env::class => [
                'cache' => 'cache',
                'db' => 'db',
                'pushTableName'   => '{{%queue_push}}',
                'execTableName'   => '{{%queue_exec}}',
                'workerTableName' => '{{%queue_worker}}',
            ],
        ],
    ],
];
```

And apply migrations.

### Web

[](#web)

Finally, modify your web config file to turn on web interface:

```
return [
    'bootstrap' => [
        'monitor',
    ],
    'modules' => [
        'monitor' => [
            'class' => \panix\mod\queue\Module::class,
        ],
    ],
];
```

It will be available by URL `http://yourhost.com/monitor`.

### Console

[](#console)

There is console garbage collector:

```
'controllerMap' => [
    'monitor' => [
        'class' => \panix\mod\queue\console\GcController::class,
    ],
],
```

It can be executed as:

```
php yii monitor/clear-deprecated P1D
```

Where `P1D` is [interval spec](https://www.php.net/manual/en/dateinterval.construct.php) that specifies to delete all records one day older.

###  Health Score

14

—

LowBetter than 1% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/f081670109ead0bd6a80aa3af5e9ef9fdcacecdaa3d5a9c1281eed523d09e455?d=identicon)[andrtechno](/maintainers/andrtechno)

---

Top Contributors

[![andrtechno](https://avatars.githubusercontent.com/u/6948026?v=4)](https://github.com/andrtechno "andrtechno (12 commits)")

### Embed Badge

![Health badge](/badges/panix-mod-queue/health.svg)

```
[![Health](https://phpackages.com/badges/panix-mod-queue/health.svg)](https://phpackages.com/packages/panix-mod-queue)
```

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.6M31](/packages/league-geotools)[illuminate/bus

The Illuminate Bus package.

6046.3M542](/packages/illuminate-bus)[uecode/qpush-bundle

Asynchronous processing for Symfony using Push Queues

1672.5M2](/packages/uecode-qpush-bundle)[belvg/module-sqs

N/A

1544.6k](/packages/belvg-module-sqs)[bsidev/bitrix-queue

Queues for Bitrix CMS

232.8k](/packages/bsidev-bitrix-queue)[mayconbordin/l5-stomp-queue

Stomp Queue Driver for Laravel 5

121.1k](/packages/mayconbordin-l5-stomp-queue)

PHPackages © 2026

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