From 6913fd8822b78bfcd6917414f555510bc9e5ba04 Mon Sep 17 00:00:00 2001 From: Paul Gear Date: Sat, 18 Apr 2015 18:56:40 +1000 Subject: [PATCH] Sharpen main device_bits & port_bits graphs Did this by lightening the max area, slightly darkening the main area, and highlighting with a darker-still outline --- html/includes/graphs/generic_data.inc.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/html/includes/graphs/generic_data.inc.php b/html/includes/graphs/generic_data.inc.php index 861868ab14..63cc15cebe 100644 --- a/html/includes/graphs/generic_data.inc.php +++ b/html/includes/graphs/generic_data.inc.php @@ -93,16 +93,18 @@ if($format == "octets" || $format == "bytes") $rrd_options .= " COMMENT:'bps Now Ave Max 95th %\\n'"; -$rrd_options .= " AREA:in".$format."_max#aDEB7B:"; -$rrd_options .= " AREA:in".$format."#91B13C:'In '"; +$rrd_options .= " AREA:in".$format."_max#D7FFC7:"; +$rrd_options .= " AREA:in".$format."#90B040:'In '"; +$rrd_options .= " LINE:in".$format."#608720:'In '"; #$rrd_options .= " LINE1.25:in".$format."#006600:'In '"; $rrd_options .= " GPRINT:in".$format.":LAST:%6.2lf%s"; $rrd_options .= " GPRINT:in".$format.":AVERAGE:%6.2lf%s"; $rrd_options .= " GPRINT:in".$format."_max:MAX:%6.2lf%s"; $rrd_options .= " GPRINT:95thin:%6.2lf%s\\\\n"; -$rrd_options .= " AREA:dout".$format."_max#a3b9FF:"; -$rrd_options .= " AREA:dout".$format."#8080BD:'Out'"; +$rrd_options .= " AREA:dout".$format."_max#E0E0FF:"; +$rrd_options .= " AREA:dout".$format."#8080C0:"; +$rrd_options .= " LINE:dout".$format."#606090:'Out'"; #$rrd_options .= " LINE1.25:dout".$format."#000099:Out"; $rrd_options .= " GPRINT:out".$format.":LAST:%6.2lf%s"; $rrd_options .= " GPRINT:out".$format.":AVERAGE:%6.2lf%s";