aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/entropy.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/entropy.php')
-rw-r--r--plugin/entropy.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/entropy.php b/plugin/entropy.php
index dcfbcc8..a4379ab 100644
--- a/plugin/entropy.php
+++ b/plugin/entropy.php
@@ -4,6 +4,7 @@
4 4
5require_once 'conf/common.inc.php'; 5require_once 'conf/common.inc.php';
6require_once 'type/Default.class.php'; 6require_once 'type/Default.class.php';
7require_once 'inc/collectd.inc.php';
7 8
8## LAYOUT 9## LAYOUT
9# entropy/entropy.rrd 10# entropy/entropy.rrd
@@ -31,6 +32,8 @@ $obj->rrd_title = "Available entropy on $host";
31$obj->rrd_vertical = 'Bits'; 32$obj->rrd_vertical = 'Bits';
32$obj->rrd_format = '%4.0lf'; 33$obj->rrd_format = '%4.0lf';
33 34
35collectd_flush(ident_from_args($obj->args));
36
34$obj->rrd_graph(); 37$obj->rrd_graph();
35 38
36?> 39?>