aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/df.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/df.php')
-rw-r--r--plugin/df.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/df.php b/plugin/df.php
index f4dd5d6..6d7414b 100644
--- a/plugin/df.php
+++ b/plugin/df.php
@@ -4,6 +4,7 @@
4 4
5require_once 'conf/common.inc.php'; 5require_once 'conf/common.inc.php';
6require_once 'type/GenericStacked.class.php'; 6require_once 'type/GenericStacked.class.php';
7require_once 'inc/collectd.inc.php';
7 8
8# LAYOUT 9# LAYOUT
9# 10#
@@ -36,6 +37,8 @@ $obj->rrd_title = "Free space ($tinstance) on $host";
36$obj->rrd_vertical = 'Bytes'; 37$obj->rrd_vertical = 'Bytes';
37$obj->rrd_format = '%5.1lf%sB'; 38$obj->rrd_format = '%5.1lf%sB';
38 39
40collectd_flush(ident_from_args($obj->args));
41
39$obj->rrd_graph(); 42$obj->rrd_graph();
40 43
41?> 44?>