ckdarbyinc / gearman-monitor
Monitor for Gearman
v0.1.1
2014-10-25 22:23 UTC
Requires
- php: >=5.4
- datatables/datatables: ~1.10
- igorw/config-service-provider: 1.2.2
- publero/net_gearman: 1.0.*@dev
- silex/silex: 1.*
- symfony/locale: ~2.4
- symfony/translation: ~2.4
- symfony/twig-bridge: ~2.4
- symfony/yaml: ~2.4
- twig/twig: >=1.16,<2.0-dev
Requires (Dev)
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-11-19 01:28:38 UTC
README
Gearman Monitor provides a dashboard to show gearman servers, queues and workers.
Installation
The following instructions outline installation using Composer. If you don't have Composer, you can download it from http://getcomposer.org/
composer install
#Copy default configuration file as config.yml
cp ./src/GearmanMonitor/Resources/config/config.yml.dist ./src/GearmanMonitor/Resources/config/config.yml
Configuration
Open config.yml file and change the listed details to fit your needs for example:
config.GearmanMonitor: servers: 0: name: "Production Gearman" address: "172.16.0.1:4730" 1: name: "Development Gearman" address: "127.0.0.1:4730"
##Credits Inspired by yugene/Gearman-Monitor.