zo / supervisor-monitor-bundle
This Bundle provides interface to monitor supervisor server processes
Installs: 569
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- phpxmlrpc/phpxmlrpc: 4.3.1
- symfony/framework-bundle: 3.1.*
This package is auto-updated.
Last update: 2025-05-22 19:37:14 UTC
README
This bundle provides a way to monitor supervisor process and control those states.
- Configure multiple supervisor server services.
- Start, Stop, Restart individual or all services.
Config
- Enable the bundle on app/AppKernel.php
- Configure the bundle
# app/config/config.yml zo_supervisor_monitor: servers: local: host: http://localhost port: 9001 username: null password: null test: host: http://localhost port: 9001 username: null password: null
- Register routes for bundles
# app/config/routing.yml zo_supervisor_monitor: resource: "@ZOSupervisorMonitorBundle/Resources/config/routing.yml" prefix: /supervisor/
Find the supervisor monitor page at /supervisor/monitor.
Widget
- Supervisor client is exposed as service
zo_supervisor_monitor.util.client
. - Supervisor configured servers process information can be fetched as,
$client = $this->get('zo_supervisor_monitor.util.client'); $res = $this->client->getServersListVersion(); // $res = array('services' => $services, 'version' => $version);
- Supervisor monitor view can be found at
ZOSupervisorMonitorBundle::services.html.twig
. Remember to passservices
andversion
variable to the view.