* [PATCH] QoS graphs: Add color mapping table
@ 2021-03-07 14:49 Leo-Andres Hofmann
0 siblings, 0 replies; only message in thread
From: Leo-Andres Hofmann @ 2021-03-07 14:49 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2256 bytes --]
Use the traffic class description field to identify similar classes.
This ensures that a class used in both the up- and down-link is
printed with matching colors in both graphs.
Signed-off-by: Leo-Andres Hofmann <hofmann(a)leo-andres.de>
---
config/cfgroot/graphs.pl | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/config/cfgroot/graphs.pl b/config/cfgroot/graphs.pl
index aced99125..e4c3613fb 100644
--- a/config/cfgroot/graphs.pl
+++ b/config/cfgroot/graphs.pl
@@ -989,7 +989,7 @@ sub updateqosgraph {
my $ERROR="";
my $count="1";
- my $color="#000000";
+ my %colorMap = (); # maps traffic classes to graph colors
my @command = (
@GRAPH_ARGS,
@@ -1013,18 +1013,27 @@ sub updateqosgraph {
@classes = <FILE>;
close FILE;
- my $colorIndex = 0;
foreach $classentry (sort @classes){
@classline = split( /\;/, $classentry );
+
+ # create class <-> color mapping
+ my $colorKey = uc $classline[8]; # upper case class name as key
+ if(! exists $colorMap{$colorKey}) {
+ # add missing color to table, use colors 11-25
+ my $colorIndex = 11 + ((scalar keys %colorMap) % 15);
+ $colorMap{$colorKey} = "$color{\"color$colorIndex\"}";
+ }
+
if ( $classline[0] eq $qossettings{'DEV'} ){
- my $colorIndex = 10 + $count % 15;
- $color="$color{\"color$colorIndex\"}";
push(@command, "DEF:$classline[1]=$mainsettings{'RRDLOG'}/class_$qossettings{'CLASSPRFX'}-$classline[1]_$qossettings{'DEV'}.rrd:bytes:AVERAGE");
+ # get color to be used for this graph
+ my $graphColor = $colorMap{$colorKey};
+
if ($count eq "1") {
- push(@command, "AREA:$classline[1]$color:$Lang::tr{'Class'} $classline[1] -".sprintf("%15s",$classline[8]));
+ push(@command, "AREA:$classline[1]$graphColor:$Lang::tr{'Class'} $classline[1] -".sprintf("%15s",$classline[8]));
} else {
- push(@command, "STACK:$classline[1]$color:$Lang::tr{'Class'} $classline[1] -".sprintf("%15s",$classline[8]));
+ push(@command, "STACK:$classline[1]$graphColor:$Lang::tr{'Class'} $classline[1] -".sprintf("%15s",$classline[8]));
}
push(@command, "GPRINT:$classline[1]:MAX:%8.1lf %sBps"
--
2.27.0.windows.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-03-07 14:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-07 14:49 [PATCH] QoS graphs: Add color mapping table Leo-Andres Hofmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox