HTTP::Engine::Middleware::Profile - stopwatch for request processing time


HTTP-Engine-Middleware documentation  | view source Contained in the HTTP-Engine-Middleware distribution.

Index


NAME

Top

HTTP::Engine::Middleware::Profile - stopwatch for request processing time

SYNOPSIS

Top

    my $mw = HTTP::Engine::Middleware->new;
    $mw->install( 'HTTP::Engine::Middleware::Profile' => {
        logger => sub {
            warn @_;
        },
    });
    HTTP::Engine->new(
        interface => {
            module => 'YourFavoriteInterfaceHere',
            request_handler => $mw->handler( \&handler ),
        }
    )->run();

DESCRIPTION

Top

This module profile request processing time.

AUTHORS

Top

dann


HTTP-Engine-Middleware documentation  | view source Contained in the HTTP-Engine-Middleware distribution.