Home  >  Article  >  Backend Development  >  Solution to JMX monitoring false alarm [70% os Process CPU Load on xxx] in ZABBIX2.4_PHP tutorial

Solution to JMX monitoring false alarm [70% os Process CPU Load on xxx] in ZABBIX2.4_PHP tutorial

WBOY
WBOYOriginal
2016-07-12 08:53:281754browse

Solution to JMX monitoring false alarm [70% os Process CPU Load on xxx] in ZABBIX2.4

ZABBIX2.4 version, using Template JMX Generic template, often false alarm [70% os Process CPU Load on xxx].
Actually the cpu usage is very low.

The reason is that the template has a bug and the trigger configuration is
{Template JMX Generic:jmx["java.lang:type=OperatingSystem",ProcessCpuLoad].last(0)}>0.7
And In fact, ProcessCpuLoad in the item is a percentage (multiplied by 100).

So change it to
{Template JMX Generic:jmx["java.lang:type=OperatingSystem",ProcessCpuLoad].last(0)}>70
.

This bug is recorded on the official website.
https://support.zabbix.com/browse/ZBX-10158

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1124514.htmlTechArticleSolution to JMX monitoring false alarm [70% os Process CPU Load on xxx] in ZABBIX2.4 version ZABBIX2.4 , using the Template JMX Generic template, often false positives [70% os Process CPU Load on xxx]. Actually...
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