aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin
diff options
context:
space:
mode:
authorPim van den Berg2012-08-10 12:01:31 +0200
committerPim van den Berg2012-08-10 12:05:05 +0200
commita1c03647dc21ff62e4b944a0c6c7caf3a3ce2c86 (patch)
tree69e8db1bfc01161c9484409adf67d250873b24d4 /plugin
parenttype/GenericIO: only use raw totals when no scale is set (diff)
downloadapt-panopticon_cgp-a1c03647dc21ff62e4b944a0c6c7caf3a3ce2c86.zip
apt-panopticon_cgp-a1c03647dc21ff62e4b944a0c6c7caf3a3ce2c86.tar.gz
apt-panopticon_cgp-a1c03647dc21ff62e4b944a0c6c7caf3a3ce2c86.tar.bz2
apt-panopticon_cgp-a1c03647dc21ff62e4b944a0c6c7caf3a3ce2c86.tar.xz
plugin/tail: change to default graph type
When measuring multiple things, they don't need to be stacked in most cases. Reported-by: Philipp Hellmich <Philipp.Hellmich@Bertelsmann.de>
Diffstat (limited to 'plugin')
-rw-r--r--plugin/tail.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/tail.php b/plugin/tail.php
index addad67..821aff8 100644
--- a/plugin/tail.php
+++ b/plugin/tail.php
@@ -3,11 +3,11 @@
3# Collectd tail plugin 3# Collectd tail plugin
4 4
5require_once 'conf/common.inc.php'; 5require_once 'conf/common.inc.php';
6require_once 'type/GenericStacked.class.php'; 6require_once 'type/Default.class.php';
7require_once 'inc/collectd.inc.php'; 7require_once 'inc/collectd.inc.php';
8 8
9 9
10$obj = new Type_GenericStacked($CONFIG); 10$obj = new Type_Default($CONFIG);
11$obj->width = $width; 11$obj->width = $width;
12$obj->heigth = $heigth; 12$obj->heigth = $heigth;
13 13