Hi,

 

It seems that there is is a small error in the apache scoreboard, some graphs are switched the keepalive and start..

I think it should be like this.

 

Index: includes/graphs/application/apache_scoreboard.inc.php

===================================================================

--- includes/graphs/application/apache_scoreboard.inc.php     (revision 2515)

+++ includes/graphs/application/apache_scoreboard.inc.php   (working copy)

@@ -12,10 +12,10 @@

 }

 

 $rrd_options .= ' DEF:a='.$rrd_filename.':sb_wait:AVERAGE ';

-$rrd_options .= 'DEF:b='.$rrd_filename.':sb_start:AVERAGE ';

+$rrd_options .= 'DEF:e='.$rrd_filename.':sb_start:AVERAGE ';

 $rrd_options .= 'DEF:c='.$rrd_filename.':sb_reading:AVERAGE ';

 $rrd_options .= 'DEF:d='.$rrd_filename.':sb_writing:AVERAGE ';

-$rrd_options .= 'DEF:e='.$rrd_filename.':sb_keepalive:AVERAGE ';

+$rrd_options .= 'DEF:b='.$rrd_filename.':sb_keepalive:AVERAGE ';

 $rrd_options .= 'DEF:f='.$rrd_filename.':sb_dns:AVERAGE ';

 $rrd_options .= 'DEF:g='.$rrd_filename.':sb_closing:AVERAGE ';

 $rrd_options .= 'DEF:h='.$rrd_filename.':sb_logging:AVERAGE ';

 

Regards,

 

Dennis Kruyt,-