blackho1e / yii2-gearman-monitor
此包最新版本(dev-master)没有可用的许可证信息。
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: 2024-09-29 05:49:22 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