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
http://www.bkjia.com/PHPjc/1124514.htmlwww.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...