diff options
author | Pim van den Berg | 2012-08-10 12:01:31 +0200 |
---|---|---|
committer | Pim van den Berg | 2012-08-10 12:05:05 +0200 |
commit | a1c03647dc21ff62e4b944a0c6c7caf3a3ce2c86 (patch) | |
tree | 69e8db1bfc01161c9484409adf67d250873b24d4 | |
parent | type/GenericIO: only use raw totals when no scale is set (diff) | |
download | apt-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>
-rw-r--r-- | plugin/tail.php | 4 |
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 | ||
5 | require_once 'conf/common.inc.php'; | 5 | require_once 'conf/common.inc.php'; |
6 | require_once 'type/GenericStacked.class.php'; | 6 | require_once 'type/Default.class.php'; |
7 | require_once 'inc/collectd.inc.php'; | 7 | require_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 | ||