aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf')
-rw-r--r--conf/config.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/conf/config.php b/conf/config.php
index 1862044..b2fdc78 100644
--- a/conf/config.php
+++ b/conf/config.php
@@ -25,6 +25,16 @@ $CONFIG['time_range']['uptime'] = 31536000;
25# show load averages on overview page 25# show load averages on overview page
26$CONFIG['showload'] = true; 26$CONFIG['showload'] = true;
27 27
28$CONFIG['term'] = array(
29 '2hour' => 3600 * 2,
30 '8hour' => 3600 * 8,
31 'day' => 86400,
32 'week' => 86400 * 7,
33 'month' => 86400 * 31,
34 'quarter'=> 86400 * 31 * 3,
35 'year' => 86400 * 365,
36);
37
28# show graphs in bits or bytes 38# show graphs in bits or bytes
29$CONFIG['network_datasize'] = 'bytes'; 39$CONFIG['network_datasize'] = 'bytes';
30 40