For the future good --
For Zabbix 1.8.8, to prevent the maps from showing "PROBLEM" status when an informational trigger is activated and to also remove UKNOWN triggers modify line 1295 of include/maps.inc.php:
From
to
w
For Zabbix 1.8.8, to prevent the maps from showing "PROBLEM" status when an informational trigger is activated and to also remove UKNOWN triggers modify line 1295 of include/maps.inc.php:
From
Code:
'filter' => array('value' => array(TRIGGER_VALUE_UNKNOWN, TRIGGER_VALUE_TRUE)),
Code:
'filter' => array('priority' => array(5, 4, 3, 2), 'value' => array(TRIGGER_VALUE_TRUE)),