首页 > 代码库 > redis监控系统

redis监控系统

Redis监控系统

系统项目可以从https://github.com/nkrode/RedisLive下载

git clone git@github.com:nkrode/RedisLive.git


这个系统是依据python写的需要安装一些python环境

tornado pip install tornado

redis.py pip install redis

python-dateutil pip install python-dateutil

配置文件redis-live.conf

{
        "RedisServers"://监控的redis
        [
                {
                        "server": "127.0.0.1",
                        "port" : 1111
                }
        ],

        "DataStoreType" : "redis",

        "RedisStatsServer"://系统平台的redis服务
        {
                "server" : "127.0.0.1",
                "port" : 2222
        },

        "SqliteStatsStore" :
        {
                "path":  "to your sql lite file"
        }
}


运行

先执行 ./redis-monitor.py --duration=120

之后     ./redis-live.py  


运行截图




redis监控系统