|
NAMEHTTP::Engine::Middleware::Profile - stopwatch for request processing time SYNOPSIS 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();
DESCRIPTIONThis module profile request processing time. AUTHORSdann
|