欢迎使用CSDN-markdown编辑器

Zabbix 监控Tomcat
IT辰逸 2014-12-01 75 阅读
CentOS

使用Zabbix监控Tomcat 我早期使用了Zabbix的内置模板,因为得到的数据没太多用,后改用去调jmap的输出,现在每三分钟执行一次脚本,每30秒取一次值,PSPermGeneration和PSOldGeneration做为报警标准.

监控图如下:
zabbix-jmap

zabbix-jmap

代码如下,通过执行jmap heap处理堆信息生成一个Dict,实现的比较妖孽 需要依赖crontab 定时执行….(模板文末下载)

!/usr/bin/python

-conding:utf-8–

——————————————————————————-

Name: Jmap.py

#

Author: LiuSha

#

Created: 9/29/2014

——————————————————————————-

import subprocess
import re
import os

def runCommand(cmd,stdinstr = ”):
p=subprocess.Popen(cmd, shell=True, universal_newlines=True, stdin=subprocess.PIPE,stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdoutdata, stderrdata = p.communicate(stdinstr)
return p.returncode, stdoutdata, stderrdata

def FormatValue():
Dict = {‘PSOldGeneration’:{‘percent’:”},’PSPermGeneration’:{‘percent’:”}}
_Output = runCommand(“”“jmap -heap ps aux | grep "/home/tomcat/tomcat/apache-tomcat-7.0.53/conf/logging.properties" | awk '!/grep/{print $2}'“”“)[1].replace(’ ‘,”).split(‘\n’)
_NewOpt = [x for x in _Output if x]
for i in _NewOpt[-10:-7]:
Dict[‘PSOldGeneration’][i.split(‘=’)[0]] = re.findall(‘\d+’,i.split(‘=’)[1])[0]

Dict['PSOldGeneration']['percent'] = re.findall('\d+\D+\d+',_NewOpt[-7])[0]

for i in _NewOpt[-5:-2]:
    Dict['PSPermGeneration'][i.split('=')[0]] =  re.findall('\d+',i.split('=')[1])[0]

Dict['PSPermGeneration']['percent'] = re.findall('\d+\D+\d+',_NewOpt[-2])[0]

file = open('%s/Dict.py'%os.path.dirname(__file__),'w')
file.write("""Dict = %s\n\nif __name__ == '__main__':
import sys
print Dict[sys.argv[1]][sys.argv[2]]"""%repr(Dict))
file.close()

if name == ‘main‘:
FormatValue()

生成的Dict.py

Dict = {‘PSOldGeneration’: {‘capacity’: ‘602406912’, ‘used’: ‘101426704’, ‘percent’: ‘16.8369090691974’, ‘free’: ‘500980208’}, ‘PSPermGeneration’: {‘capacity’: ‘268435456’, ‘used’: ‘71036880’, ‘percent’: ‘26.463299989700317’, ‘free’: ‘197398576’}}

if name == ‘main‘:
import sys
print Dict[sys.argv[1]][sys.argv[2]]

相关Key如下:

UserParameter=Tomcat.PSOldGeneration.capacity[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSOldGeneration capacity
UserParameter=Tomcat.PSOldGeneration.free[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSOldGeneration free
UserParameter=Tomcat.PSOldGeneration.used[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSOldGeneration used
UserParameter=Tomcat.PSOldGeneration.percent[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSOldGeneration percent
UserParameter=Tomcat.PSPermGeneration.capacity[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSPermGeneration capacity
UserParameter=Tomcat.PSPermGeneration.free[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSPermGeneration free
UserParameter=Tomcat.PSPermGeneration.used[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSPermGeneration used
UserParameter=Tomcat.PSPermGeneration.percent[*],/usr/bin/python /software/zabbix/scripts/Dict.py PSPermGeneration percent

Zabbix-tomcat模板下载地址
百度云盘
腾讯云盘
文件信息:zbx_export_templates.xml
更新时间:2014-12-1 18:43

» 转载保留版权:IT辰逸 » 《Zabbix 监控Tomcat》
» 本文链接地址:http://www.ipython.me/centos/zabbix-monitor-tomcat.html
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值