redis3.0集群状态监控for zabbix 需要python2.7

#coding=utf-8
__author__ = 'yuan.ran@msxf.com'
'''This scripte use to monitor online redis cluster status and nodes status! need python 2.7'''

import os,sys,time,traceback
from rediscluster import  StrictRedisCluster

cluster_nodes = [{"host":"Redis1.xxxxx.db","port":"7000"},{"host":"Redis1.xxxxx.db","port":"7001"},{"host":"Redis2.xxxxx.db","port":"7002"},
{"host":"Redis2.xxxxx.db","port":"7003"},{"host":"Redis3.xxxxx.db","port":"7004"},{"host":"Redis3.xxxxx.db","port":"7005"}]
try:
    rc = StrictRedisCluster(startup_nodes=cluster_nodes, decode_responses=True)
except Exception, err:
        print err
        print 'failed to connect redis cluster!'
        sys.exit(0)

def getClusterStatus():
    cs =  rc.execute_command('cluster','info')
    clusterstatus = cs.split('\r')[0].split(':')
    if clusterstatus[1] == 'ok':
        rediscluster = 0
    else:
        rediscluster = 1
    print rediscluster

def getClusterNode():
    cn = rc.execute_command('cluster','nodes')
    nodescount1 = cn.count("connected")
    nodescount2 = cn.count("disconnected")
    nodescount = nodescount1 - nodescount2
    print nodescount

if __name__ == '__main__':
    if  str(sys.argv[1]) == 'nodes':
        getClusterNode()
    elif  str(sys.argv[1]) == 'status':
        getClusterStatus()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值