From: Dylan Hardison Date: Wed, 27 Apr 2016 15:14:06 +0000 (-0400) Subject: Bug 1225214 - Implement very simple request time logging X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f885e904ca8ed2982d0f1182100b4e0c86389df3;p=thirdparty%2Fbugzilla.git Bug 1225214 - Implement very simple request time logging --- diff --git a/mod_perl.pl b/mod_perl.pl index 15230f615..83784d3fe 100644 --- a/mod_perl.pl +++ b/mod_perl.pl @@ -119,6 +119,7 @@ use strict; use base qw(ModPerl::Registry); use Bugzilla; use Bugzilla::Constants qw(USAGE_MODE_REST); +use Time::HiRes; sub handler : method { my $class = shift; @@ -136,7 +137,9 @@ sub handler : method { use warnings; Bugzilla::init_page(); + my $start = Time::HiRes::time(); my $result = $class->SUPER::handler(@_); + warn "[request_time] ", Bugzilla->cgi->request_uri, " took ", Time::HiRes::time() - $start, " seconds to execute"; # When returning data from the REST api we must only return 200 or 304, # which tells Apache not to append its error html documents to the