Skip to content
This repository has been archived by the owner on May 28, 2018. It is now read-only.

Commit

Permalink
Changing idle_worker to idle_workers.
Browse files Browse the repository at this point in the history
  • Loading branch information
patyx7 committed Nov 7, 2013
1 parent dbac9af commit 41ef5c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions check_apache_status.pl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'bytes_per_request' => 'LiB',
'accesses' => 'LiB',
'bytes_per_second' => 'LiB',
'idle_worker' => 'HiB',
'idle_workers' => 'HiB',
#'uptime' => 'LiB',
'current_requests' => 'LiB'
);
Expand All @@ -23,7 +23,7 @@
'bytes_per_request' => '1024',
'accesses' => '100000',
'bytes_per_second' => '1000',
'idle_worker' => '50',
'idle_workers' => '50',
'current_requests' => '150'
);
%warning = (
Expand All @@ -32,7 +32,7 @@
'bytes_per_request' => '768',
'accesses' => '50000',
'bytes_per_second' => '800',
'idle_worker' => '150',
'idle_workers' => '150',
'current_requests' => '70'
);
my @pretext
Expand Down Expand Up @@ -98,7 +98,7 @@ ()
bytes_per_request LiB
accesses LiB
bytes_per_second LiB
idle_worker HiB
idle_workers HiB
current_requests LiB
uptime [will allways deliver UNKNOWN]
Expand Down Expand Up @@ -226,7 +226,7 @@ ($)
)
{
$results{'current_requests'} = $1;
$results{'idle_worker'} = $2;
$results{'idle_workers'} = $2;
}
}
return (%results);
Expand Down

0 comments on commit 41ef5c8

Please sign in to comment.