Apache2-ScoreboardDumper

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

    Apache2::ScoreboardDumper - Dumps the scoreboard to the error log when
    server slots are full

SYNOPSIS
    In your httpd.conf:

     PerlInitHandler Apache2::ScoreboardDumper
     PerlSetVar ScoreboardDumpMethod All | LockFreq | Stochastic
     PerlSetVar ScoreboardDumpFreq 5 # dump every 5th request
     PerlSetVar ScoreboardDumpLock My::LockPackage # optional class to provide lock and unlock
     PerlSetVar ScoreboardDumpStochastic 0.5 # 0-1, percentage of time to dump scoreboard

DESCRIPTION
    This module will dump the scoreboard to the error log at info level if
    the number of httpd server slots becomes full. There are 3 different
    ways this module can be configured.

    All - dump the scoreboard each request.

    LockFreq - dump the scoreboard every Nth request. You must supply a
    locking package.

lib/Apache2/ScoreboardDumper.pm  view on Meta::CPAN

Apache2::ScoreboardDumper - Dumps the scoreboard to the error log when server slots are full

=head1 SYNOPSIS

In your httpd.conf:

 PerlInitHandler Apache2::ScoreboardDumper
 PerlSetVar ScoreboardDumpMethod All | LockFreq | Stochastic
 PerlSetVar ScoreboardDumpFreq 5 # dump every 5th request
 PerlSetVar ScoreboardDumpLock My::LockPackage # optional class to provide lock and unlock
 PerlSetVar ScoreboardDumpStochastic 0.5 # 0-1, percentage of time to dump scoreboard


=head1 DESCRIPTION

This module will dump the scoreboard to the error log at info level if the number
of httpd server slots becomes full. There are 3 different ways this module can be configured.

All - dump the scoreboard each request.

LockFreq - dump the scoreboard every Nth request. You must supply a locking package.



( run in 0.358 second using v1.01-cache-2.11-cpan-10c994e2082 )