![](https://secure.gravatar.com/avatar/b4de917b819bc0de4802867dc86539dc.jpg?s=120&d=mm&r=g)
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,-
![](https://secure.gravatar.com/avatar/0fa97865a0e1ab36152b6b2299eedb49.jpg?s=120&d=mm&r=g)
On Wed, 21 Sep 2011 11:31:26 +0200, Dennis Kruyt d.kruyt@zx.nl wrote:
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.
I've rewritten that graph type to use a generic type, so it'll benefit from improvements to that template over time as well as removing the error.
Thanks, adam.
participants (2)
-
Adam Armstrong
-
Dennis Kruyt