blackho1e / yii2-gearman-monitor
There is no license information available for the latest version (dev-master) of this package.
yii2-gearman-monitor
Package info
github.com/blackho1e/yii2-gearman-monitor
Type:yii2-extension
pkg:composer/blackho1e/yii2-gearman-monitor
dev-master
2023-03-20 22:46 UTC
Requires
- php: >=5.4.0
- maknz/slack: ^1.7.0
- necromant2005/gearman-stats: @dev
- yiisoft/yii2: ^2.0.6
This package is not auto-updated.
Last update: 2026-03-15 13:31:58 UTC
README
기어맨 모니터링
Composer로 설치
composer require blackho1e/yii2-gearman-monitor "dev-master"
또는 composer.json에 추가
"blackho1e/yii2-gearman-monitor": "dev-master"
설정
- console/config/main.php 파일에 추가:
'modules' => [ 'gearman-monitor' => [ 'class' => 'blackho1e\yii2\gearman\monitor\Module', 'params' => [ 'servers' => [ [ 'host' => '127.0.0.1', 'port' => 4730, 'limit' => 5, // 5개이상인경우 알림 'functions' => [ // 모니터링할 평션 리스트 'test1', 'test2', ], ], ], 'slack' => [ 'url' => 'https://hooks.slack.com/services/xxxxxxxxx/xxx...', 'options' => [ 'username' => 'blackho1e', 'channel' => '#general', 'icon' => ':sunflower:', 'link_names' => true ] ] ] ] ]
- 시스템에 crontab 등록
$ sudo crontab -e:
*/30 * * * * php /home/user/app/yii gearman-monitor