Monitoring Apache performance using mod_log_firstbyte
So, I wrote a module allowing you to log the time between the request being read and the first byte of the response being served. Unlike the total serve time, this tells you how long Apache actually spent loading the file off the disk or executing your script: it's independent of client connection speed. It makes a great performance benchmark for your server!
For more details, visit:
– Matthew