Hi all. I need special statistic information for Apache. I want to measure time between incoming request on Apache server and outcoming answer from Apache server. Thats mean time when users request comes to server and when server is ready to send page to user. I know that it is about some miliseconds but i need this information. Any ideas about this?
You could write a shell script which takes the current time in milliseconds (T1), downloads a URL from your server and takes the current time again (T2). If you run this script from your server, T2-T1 would be very close to Apache's processing time. Carl