PHPackages                             lagdo/jaxon-supervisor - 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. [Admin Panels](/categories/admin)
4. /
5. lagdo/jaxon-supervisor

ActiveLibrary[Admin Panels](/categories/admin)

lagdo/jaxon-supervisor
======================

Supervisor dashboard based on the Jaxon Ajax library

v1.1.2(4mo ago)293BSD-3-ClausePHP

Since Aug 16Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/lagdo/jaxon-supervisor)[ Packagist](https://packagist.org/packages/lagdo/jaxon-supervisor)[ Docs](https://github.com/lagdo/jaxon-supervisor)[ RSS](/packages/lagdo-jaxon-supervisor/feed)WikiDiscussions main Synced today

READMEChangelog (8)Dependencies (6)Versions (10)Used By (0)

A Supervisor dashboard based on the Jaxon ajax library
======================================================

[](#a-supervisor-dashboard-based-on-the-jaxon-ajax-library)

There are already several packages that allow to monitor multiple [Supervisor](http://supervisord.org) instances from a single dashboard. However, all these packages are standalone applications, with all the constraints that this implies in terms of installation, configuration, authentication, etc.

This package allows to insert a dashboard for [Supervisor](http://supervisord.org) into an existing PHP application. Thanks to the [Jaxon library](https://www.jaxon-php.org), it installs and runs in a page of the application, which can be loaded with an HTTP or an Ajax request. All its operations are performed with Ajax requests.

Features
--------

[](#features)

- Show the processes on Supervisor servers with status and running time.
- Start, restart or stop a process on a server.
- Start, restart or stop all the processes on a server.
- Start or stop refresh timer.
- Trigger refresh.

Documentation
-------------

[](#documentation)

Install the jaxon library so it bootstraps from a config file and handles ajax requests. Here's the [documentation](https://www.jaxon-php.org/docs/v3x/advanced/bootstrap.html).

Install this package with Composer. If a [Jaxon plugin](https://www.jaxon-php.org/docs/v3x/plugins/frameworks.html) exists for your framework, you can also install it. It will automate the previous step.

Declare the package and the Supervisor servers in the `app` section of the [Jaxon configuration file](https://www.jaxon-php.org/docs/v3x/advanced/bootstrap.html).

```
    'app' => [
        // Other config options
        // ...
        'packages' => [
            Lagdo\Supervisor\Package::class => [
                'servers' => [
                    'first_server' => [
                        'url' => 'http://192.168.1.10',
                        'port' => '9001',
                    ],
                    'second_server' => [
                        'url' => 'http://192.168.1.11',
                        'port' => '9001',
                    ],
                ],
            ],
        ],
    ],
```

Use the boolean option `wait` to set if when calling the server, the Supervisor client should wait for operation to terminate before it returns.

```
    'app' => [
        // Other config options
        // ...
        'packages' => [
            Lagdo\Supervisor\Package::class => [
                'wait' => false, // Global option for all servers.
                'servers' => [
                    'first_server' => [
                        'url' => 'http://192.168.1.10',
                        'port' => '9001',
                        'wait' => true, // Specific option for a given server.
                    ],
                    'second_server' => [
                        'url' => 'http://192.168.1.11',
                        'port' => '9001',
                    ],
                ],
            ],
        ],
    ],
```

If the access to a Supervisor server API requires authentification, the credentials can be set with the `auth` option.

```
    'app' => [
        // Other config options
        // ...
        'packages' => [
            Lagdo\Supervisor\Package::class => [
                'servers' => [
                    'first_server' => [
                        'url' => 'http://192.168.1.10',
                        'port' => '9001',
                        'auth' => ['first_username', 'first_password'],
                    ],
                    'second_server' => [
                        'url' => 'http://192.168.1.11',
                        'port' => '9001',
                        'auth' => ['second_username', 'second_password'],
                    ],
                ],
            ],
        ],
    ],
```

Insert the CSS and javascript codes in the HTML pages of your application using calls to `jaxon()->getCss()` and `jaxon()->getScript(true)`.

In the page that displays the dashboard, insert its HTML code with a call to `jaxon()->package(\Lagdo\Supervisor\Package::class)->getHtml()`, and make sure the Javascript code returned by the call to `jaxon()->package(\Lagdo\Supervisor\Package::class)->getReadyScript()` is executed on page load.

Notes
-----

[](#notes)

The HTML code of the package uses the [Bootstrap](https://getbootstrap.com/) CSS framework, qui which must also be included in the page. It is entirely contained in a `` tag.

Support for other frameworks will be added in future releases.

Contribute
----------

[](#contribute)

- Issue Tracker: github.com/lagdo/jaxon-supervisor/issues
- Source Code: github.com/lagdo/jaxon-supervisor

License
-------

[](#license)

The project is licensed under the BSD license.

###  Health Score

41

—

FairBetter than 88% of packages

Maintenance81

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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 ~154 days

Recently: every ~307 days

Total

9

Last Release

131d ago

### Community

Maintainers

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

---

Top Contributors

[![feuzeu](https://avatars.githubusercontent.com/u/15174329?v=4)](https://github.com/feuzeu "feuzeu (55 commits)")

---

Tags

ajaxdashboardsupervisorJaxon

### Embed Badge

![Health badge](/badges/lagdo-jaxon-supervisor/health.svg)

```
[![Health](https://phpackages.com/badges/lagdo-jaxon-supervisor/health.svg)](https://phpackages.com/packages/lagdo-jaxon-supervisor)
```

###  Alternatives

[digital-creative/nova-dashboard

The missing dashboard for nova.

7169.3k1](/packages/digital-creative-nova-dashboard)[jubeki/nova-card-linkable

A Linkeable Card for the Laravel Nova Dashboard.

19246.1k](/packages/jubeki-nova-card-linkable)[eliseekn/laravel-metrics

Generate easily metrics and trends data of your models for your dashboards.

1075.7k](/packages/eliseekn-laravel-metrics)[plastyk/dashboard

An extendable dashboard for Silverstripe

2243.0k2](/packages/plastyk-dashboard)[putyourlightson/craft-dashboard-begone

Removes the dashboard and redirects users to entries.

1179.0k1](/packages/putyourlightson-craft-dashboard-begone)[superv/platform

SuperV Platform Package

2411.6k5](/packages/superv-platform)

PHPackages © 2026

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