码迷,mamicode.com
首页 > 其他好文 > 详细

监控elssticSearch健康状态

时间:2019-02-03 10:36:25      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:comm   spl   sof   zabbix模板   监控项   use   rip   red   imp   

[4ajr@elk1 scripts]$ curl 172.30.210.175:9200/_cat/health 

[4ajr@elk1 scripts]$ cat check_es_healthy.py 

import commands

command = ‘172.30.210.175:9200/_cat/health‘

(a, b) = commands.getstatusoutput(command)

status = b.split(‘ ‘)

if status==‘red‘:

    healthy=0

else:

    healthy=1

 

 

print healthy

 

 

UserParameter=es_healthy,python /soft/zabbix_agent/scripts/check_es_healthy.py

 

zabbix模板,应用集,监控项,报警,图形

监控elssticSearch健康状态

标签:comm   spl   sof   zabbix模板   监控项   use   rip   red   imp   

原文地址:https://www.cnblogs.com/charon2/p/10349719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!