diff --git a/plugins/apache/apache_status b/plugins/apache/apache_status index b310f0e1..9bba924c 100755 --- a/plugins/apache/apache_status +++ b/plugins/apache/apache_status @@ -11,8 +11,7 @@ This plugin will produce multiple graphs showing: - the number of accesses to Apache servers; - the number of apache processes running on the machine; - - the volume of data sent from Apache servers; - - the average requests per second to Apache servers. + - the volume of data sent from Apache servers. =head1 APPLICABLE SYSTEMS @@ -217,29 +216,13 @@ END print_thresholds("volume$port"); } - print < "multigraph apache_accesses\n", processes => "multigraph apache_processes\n", - volume => "multigraph apache_volume\n", - average => "multigraph apache_average_requests\n" + volume => "multigraph apache_volume\n" ); foreach my $port (@PORTS) { @@ -274,12 +257,6 @@ foreach my $port (@PORTS) { } else { $multigraphs{volume} .= "volume$port.value U\n"; } - - if ($response->content =~ /^ReqPerSec:\s+(.+)$/im) { - $multigraphs{average} .= "average$port.value $1\n"; - } else { - $multigraphs{average} .= "average$port.value U\n"; - } } foreach my $graph (keys %multigraphs) {