From beb4f0b42e11e9f5711e66c34df812ce389d71a1 Mon Sep 17 00:00:00 2001 From: Adam Amstrong Date: Sat, 23 Apr 2011 11:05:50 +0000 Subject: [PATCH] fix procurve FDB (mac address) graph git-svn-id: http://www.observium.org/svn/observer/trunk@2147 61d68cd4-352d-0410-923a-c4978735b2b8 --- html/includes/graphs/device/fdb_count.inc.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/html/includes/graphs/device/fdb_count.inc.php b/html/includes/graphs/device/fdb_count.inc.php index ce802b7e66..d5b896dacb 100755 --- a/html/includes/graphs/device/fdb_count.inc.php +++ b/html/includes/graphs/device/fdb_count.inc.php @@ -7,10 +7,13 @@ include("includes/graphs/common.inc.php"); $rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/fdb_count.rrd"; $rrd_options .= " DEF:value=$rrd_filename:value:AVERAGE"; +$rrd_options .= " DEF:value_min=$rrd_filename:value:MIN"; +$rrd_options .= " DEF:value_max=$rrd_filename:value:MAX"; + $rrd_options .= " COMMENT:'MACs Current Minimum Maximum Average\\n'"; $rrd_options .= " AREA:value#EEEEEE:value"; $rrd_options .= " LINE1.25:value#36393D:"; -$rrd_options .= " GPRINT:value:LAST:%6.2lf\ GPRINT:value:AVERAGE:%6.2lf\ "; -$rrd_options .= " GPRINT:value:MAX:%6.2lf\ GPRINT:value:AVERAGE:%6.2lf\\\\n"; +$rrd_options .= " GPRINT:value:LAST:%6.2lf\ GPRINT:value_min:MIN:%6.2lf\ "; +$rrd_options .= " GPRINT:value_max:MAX:%6.2lf\ GPRINT:value:AVERAGE:%6.2lf\\\\n"; ?>