ZABBIX2.4中JMX监控误报【70% os Process CPU Load on xxx】的解决
ZABBIX2.4版,使用Template JMX Generic模板,经常误报【70% os Process CPU Load on xxx】。
实际上cpu使用率很低。
原因是模板有bug,触发器配置为
{Template JMX Generic:jmx["java.lang:type=OperatingSystem",ProcessCpuLoad].last(0)}>0.7
而实际上item中ProcessCpuLoad是百分数(已经乘了100的)。
所以修改为
{Template JMX Generic:jmx["java.lang:type=OperatingSystem",ProcessCpuLoad].last(0)}>70
即可。
官网上记录了这个bug。
https://support.zabbix.com/browse/ZBX-10158
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn