Ad Widget

Collapse

Zabbix Triggers OK Status

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Melanie Long
    Junior Member
    • May 2010
    • 9

    #1

    Zabbix Triggers OK Status

    Hi,

    The trigger status on Zabbix 1.8.2 for the ok status stays there for atleast 15 min. I am more interested in the problem triggers. I understand that when the status of a monitored device changes the new zabbix alerts the user with the OK status, but is there a way of making the OK status display period shorted, as it looks very messy for those 15 minutes or so.

    tks
  • NOB
    Senior Member
    Zabbix Certified Specialist
    • Mar 2007
    • 469

    #2
    Hi Melanie

    to get rid of the blinking change the following two lines in frontends/php/include/defines.inc.php from

    Code:
    define('TRIGGER_FALSE_PERIOD', 			1800);	// 30min,  0 - disable
    define('TRIGGER_BLINK_PERIOD',			1800);	// 30min,  0 - disable
    to

    Code:
    define('TRIGGER_FALSE_PERIOD', 			0);	// 30min,  0 - disable
    define('TRIGGER_BLINK_PERIOD',			0);	// 30min,  0 - disable
    Best regards,

    Norbert.

    Comment

    • Melanie Long
      Junior Member
      • May 2010
      • 9

      #3
      Thanks i have made the change, and will now monitor it. Should i restart the Zabbix_server service ? Or is the change instant ?

      Comment

      • Melanie Long
        Junior Member
        • May 2010
        • 9

        #4
        I made those changes but the OK status is still displaying any where between 15 - 30 min. Should the zabbix server service be restarted ? Is there a way of only displaying problems, and remove the OK status totally ?

        Comment

        Working...