Under Screen my graphs are all based on 1 hour timeframe, I would like some of these graphs to be based on 1 day.
Ad Widget
Collapse
How do you change the default Graph timeline
Collapse
X
-
If you are logged in, ZABBIX remembers your last selection of time period on per graph level.
I would like to see some global parameters (like this one) to be configured in user profiles.Comment
-
Having the default graph period adjustable per user will be great! In the meantime, I have changed the default period for graphs (applies to all users) with the following simple modification.
Edit /include/graphs.inc.php, and find the following line (line 513 in version 1.1.4):
This line sets the default period if none is specified (as would be the case on Screens). Simply muliply the period with the number of hours you wish to be the defaul. For example, to show 4 hours:Code:if(!isset($_REQUEST["period"])) $_REQUEST["period"]=3600;
Code:if(!isset($_REQUEST["period"])) $_REQUEST["period"]=3600[B][COLOR=Red]*4[/COLOR][/B];
Comment
-
I agree 100%, this would be a great feature.
In addition, I should be able to set the default on each graph as I build it, AND I would like to be able to set it again for each graph I lay on a screen.
That way I can build a custom screen where I could show the same graph two or more times, but with different time periods.... Or a screen that shows the last day/week/month of activity for a particular group of servers...Comment
Comment