ckdarbyinc/gearman-monitor

Gearman 监控器

v0.1.1 2014-10-25 22:23 UTC

This package is not auto-updated.

Last update: 2024-09-24 00:47:21 UTC


README

Gearman Monitor 提供一个仪表盘来显示 gearman 服务器、队列和工作者。

Gearman Monitor Screenshot

安装

以下说明使用 Composer 进行安装。如果您没有 Composer,可以从 https://getcomposer.org.cn/ 下载。

composer install
#Copy default configuration file as config.yml
cp ./src/GearmanMonitor/Resources/config/config.yml.dist ./src/GearmanMonitor/Resources/config/config.yml

配置

打开 config.yml 文件,并根据您的需求更改列出的详细信息,例如

config.GearmanMonitor:
    servers:
        0:
            name: "Production Gearman"
            address: "172.16.0.1:4730"
        1:
            name: "Development Gearman"
            address: "127.0.0.1:4730"

##受以下启发 yugene/Gearman-Monitor