Ad Widget

Collapse

Setting Graphs Default Values

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • brendanb
    Junior Member
    • Apr 2010
    • 2

    #1

    Setting Graphs Default Values

    Hi,

    very new to zabbix and really like it. I have one question.

    How can i change the default graph view settings?
    Not the refresh period.

    I would like the graph to show the last 5 days. At present it defaults to the last hour.
    see screen shot
    Attached Files
  • Aly
    ZABBIX developer
    • May 2007
    • 1126

    #2
    Discussed somewhere in the forum..
    include/defines.inc.php
    PHP Code:
    define('ZBX_PERIOD_DEFAULT',            3600);        // 1 hour 
    change to:
    PHP Code:
    define('ZBX_PERIOD_DEFAULT',            3600*24*5);        // 5 days 
    Zabbix | ex GUI developer

    Comment

    Working...