Apache2-ScoreboardDumper
view release on metacpan or search on metacpan
lib/Apache2/ScoreboardDumper.pm view on Meta::CPAN
use Apache::Scoreboard;
use Apache2::RequestRec;
use Apache2::Log;
use Apache2::Const -compile => qw( DECLINED );
our %Key = (
'_' => 'Waiting for Connection',
'S' => 'Starting up',
'R' => 'Reading Request',
'W' => 'Sending Reply',
'K' => 'Keepalive (read)',
'D' => 'DNS Lookup',
'C' => 'Closing connection',
'L' => 'Logging',
'G' => 'Gracefully finishing',
'I' => 'Idle cleanup of worker',
'.' => 'Open slot with no current process'
);
sub handler {
my ( $class, $r ) = @_;
( run in 0.759 second using v1.01-cache-2.11-cpan-df04353d9ac )