yzalis/supervisor-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Manage your supervisor instance in your Symfony2 application.

Maintainers

👁 blaugueux

Package info

github.com/yzalis/SupervisorBundle

Type:symfony-bundle

pkg:composer/yzalis/supervisor-bundle

Statistics

Installs: 179 327

Dependents: 2

Suggesters: 0

Stars: 38

Open Issues: 2

1.3.1 2018-11-02 10:09 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 0b3fae253246fe861d0223a3ddbb37a5465eae6f

rpcapisupervisorsupervisordsupervisorctl

This package is not auto-updated.

Last update: 2021-02-12 12:03:58 UTC


README

👁 SensioLabsInsight

About

This is the official bundle of the Supervisor PHP library.

Installation

Step 1: Install YZSupervisorBundle using Composer

Add YZSupervisorBundle in your composer.json:

{
 "require": {
 "yzalis/supervisor-bundle": "1.0.*@dev"
 }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update yzalis/supervisor-bundle

Step 2: Enable the bundle

Enable the bundle in the kernel:

# app/AppKernel.php
public function registerBundles()
{
 $bundles = array(
 // ...
 new YZ\SupervisorBundle\YZSupervisorBundle(),
 // ...
 );
}

Step 3: Configure your config.yml file

# app/config/config.yml
yz_supervisor:
 default_environment: dev
 servers:
 prod:
 SUPERVISOR_01:
 host: 192.168.0.1
 username: guest
 password: password
 port: 9001
 SUPERVISOR_02:
 host: 192.168.0.2
 username: guest
 password: password
 port: 9001
 dev:
 locahost:
 host: 127.0.0.1
 username: guest
 password: password
 port: 9001
 groups: ['example_site']

The group option limits access to specific process groups. When no groups are provided, all groups are listed.

Usage

Iterate over all supervisor servers:

$supervisorManager = $this->container->get('supervisor.manager');

foreach ($supervisorManager->getSupervisors() as $supervisor) {
 echo $supervisor->getKey();
 // ...
}

Retrieve a specific supervisor servers:

$supervisorManager = $this->container->get('supervisor.manager');

$supervisor = $supervisorManager->getSupervisorByKey('uniqueKey');

echo $supervisor->getKey();

User interface

You can access to a beautiful user interface to monitor all your supervisor servers an process.

Import the routing definition in routing.yml:

# app/config/routing.yml
YZSupervisorBundle:
 resource: "@YZSupervisorBundle/Resources/config/routing.xml"
 prefix: /supervisor

Here is the result

👁 Supervisor Bundle screenshot

Unit Tests

To run unit tests, you'll need a set of dependencies you can install using Composer:

php composer.phar install

Once installed, just launch the following command:

phpunit

You're done.

Credits

License

Supervisor is released under the MIT License. See the bundled LICENSE file for details.