I created two simple mod_perl handlers, that help me find the response time of my web application. See it on github apache2-logging-handler.
The code is so simple that you can recreate them easily yourself. Note the use
of the pnotes
function.
$r->pnotes('start_time');
With pnotes
you can share information between handlers. I had to search for a
bit and this works great.