From 22f4e043ca927bc85eac28b53f5636096f67522c Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Wed, 8 Jun 2011 00:11:14 +1000 Subject: [PATCH] exclude boards from combined graph --- templates/themes/rrdtool/theme.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/themes/rrdtool/theme.php b/templates/themes/rrdtool/theme.php index 43a9abd0..39f950ea 100644 --- a/templates/themes/rrdtool/theme.php +++ b/templates/themes/rrdtool/theme.php @@ -22,6 +22,8 @@ $this->interval = 120; $this->height = 150; $this->width = 700; + // exclude boards from the "combiend" graph + $this->combined_exclude = Array('dome9001', 'mod', 'test'); if($action == 'cron') { if(!file_exists($settings['path'])) @@ -123,6 +125,8 @@ $cc = 0; foreach($this->boards as &$board) { + if(in_array($board, $this->combined_exclude)) + continue; $color = str_pad(dechex($red*85), 2, '0', STR_PAD_LEFT) . str_pad(dechex($green*85), 2, '0', STR_PAD_LEFT) . str_pad(dechex($blue*85), 2, '0', STR_PAD_LEFT);