diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/config.php | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/conf/config.php b/conf/config.php index 5a67007..b6e8bf1 100644 --- a/conf/config.php +++ b/conf/config.php | |||
@@ -44,7 +44,7 @@ $CONFIG['allowed'] = array(); | |||
44 | #$CONFIG['overview_filter']['interface'] = array('ti' => 'eth0', 't' => 'if_octets'); | 44 | #$CONFIG['overview_filter']['interface'] = array('ti' => 'eth0', 't' => 'if_octets'); |
45 | 45 | ||
46 | # default plugins time range | 46 | # default plugins time range |
47 | $CONFIG['time_range']['default'] = 86400; | 47 | $CONFIG['time_range']['default'] = 86400 * 7; |
48 | $CONFIG['time_range']['uptime'] = 31536000; | 48 | $CONFIG['time_range']['uptime'] = 31536000; |
49 | 49 | ||
50 | # show load averages and used memory on overview page | 50 | # show load averages and used memory on overview page |
@@ -53,13 +53,15 @@ $CONFIG['showmem'] = false; | |||
53 | $CONFIG['showtime'] = false; | 53 | $CONFIG['showtime'] = false; |
54 | 54 | ||
55 | $CONFIG['term'] = array( | 55 | $CONFIG['term'] = array( |
56 | '2hour' => 3600 * 2, | 56 | '2hour' => 3600 * 2, |
57 | '8hour' => 3600 * 8, | 57 | '8hour' => 3600 * 8, |
58 | 'day' => 86400, | 58 | 'day' => 86400, |
59 | 'week' => 86400 * 7, | 59 | 'week' => 86400 * 7, |
60 | 'month' => 86400 * 31, | 60 | 'fortnight' => 86400 * 7 * 2, |
61 | 'quarter'=> 86400 * 31 * 3, | 61 | 'month' => 86400 * 31, |
62 | 'year' => 86400 * 365, | 62 | 'quarter' => 86400 * 31 * 3, |
63 | 'year' => 86400 * 365, | ||
64 | '2year' => 86400 * 365 * 2, | ||
63 | ); | 65 | ); |
64 | 66 | ||
65 | # show graphs in bits or bytes | 67 | # show graphs in bits or bytes |