The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache::Status - Embedded interpreter status information

SYNOPSIS

 <Location /perl-status>
 SetHandler  perl-script
 PerlHandler Apache::Status
 </Location>

DESCRIPTION

The Apache::Status module provides some information about the status of the Perl interpreter embedded in the server.

Configure like so:

 <Location /perl-status>
 SetHandler  perl-script
 PerlHandler Apache::Status
 </Location>

Other modules can "plugin" a menu item like so:

 Apache::Status->menu_item(
    'DBI' => "DBI connections", #item for Apache::DBI module
    sub {
        my($r,$q) = @_; #request and CGI objects
        my(@strings);
        push @strings,  "blobs of html";
        return \@s;     #return an array ref
    }
 ) if Apache->module("Apache::Status"); #only if Apache::Status is loaded

PREREQUISITES

The Devel::Symdump module must be installed:

 perl -MCPAN -e 'install "Devel::Symdump"'

Or fetch from: http://www.perl.com/cgi-bin/cpan_mod?module=Devel::Symdump

SEE ALSO

perl(1), Apache(3), Devel::Symdump(3)

AUTHOR

Doug MacEachern <dougm@osf.org>