redis3.0集群状态监控脚本用于zabbix监控需要python2.6

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

# define cluster nodes address
cluster_nodes =[ {"Redis1.xxxxx.db" :"7000"},{"Redis1.xxxxx.db" :"7001"},{"Redis2.xxxxx.db":"7002"},
{"Redis2.xxxxx.db":"7003"},{"Redis3.xxxxx.db":"7004"},{"Redis3.xxxxx.db":"7005"}]

# init rhost and port
rhost = '192.168.77.77'
port = '8787'

# check alive node
for address in cluster_nodes:
      sc=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
      ip =  ''.join(address.keys())
      port =int( ''.join(address.values()))
      sc.settimeout(1)
      try:
          sc.connect((ip,port))
          rhost,rport = ip,port
          break
      except Exception:
          print ("Server port  not connect!")
      sc.close()

# create connect to alive redis node
try:
    rc = redis.StrictRedis(host=rhost,port=rport)
except Exception, err:
    print err
    print 'failed to connect redis cluster!'
    sys.exit(0)

# get cluster status ok return 0,false return 1
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

# get cluster alive node number
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
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值