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

zabbix 监控 ElasticSearch

时间:2017-06-29 19:16:03      阅读:495      评论:0      收藏:0      [点我收藏+]

标签:import   server   gen   json   images   ges   conf   ima   zabbix 监控   

ElasticSearch  可以直接使用zabbix官方的模板

模板地址:

https://github.com/mkhpalm/elastizabbix

 

通过zabbix server 直接监控

1、下载模板文件导入模板

2、把模板关联到zabbix server

3、添加自定义KEY

 

vim /etc/zabbix/scripts/elastizabbix.py
#!/usr/bin/python
import os
import sys
import json
import urllib2
import time
import errno

ttl = 60

#url更换成你的es地址
stats = {
    ‘cluster‘: ‘http://elasticsearch.es.cn:19200/_cluster/stats‘,
    ‘nodes‘  : ‘http://elasticsearch.es.cn:19200/_nodes/stats‘,
    ‘indices‘: ‘http://elasticsearch.es.cn:19200/_stats‘,
    ‘health‘ : ‘http://elasticsearch.es.cn:19200/_cluster/health‘
}

  

vim /etc/zabbix/zabbix_agentd.d/es.conf

UserParameter=elastizabbix[*],/etc/zabbix/scripts/elastizabbix.py $1 $2

  

技术分享

 

zabbix 监控 ElasticSearch

标签:import   server   gen   json   images   ges   conf   ima   zabbix 监控   

原文地址:http://www.cnblogs.com/37yan/p/7095853.html

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