Re: Logging Server Responses

2005-06-09 Thread TK
Is the time recorded (using %D) includes time taken for middleware/application server and database processings? On 6/7/05, Tim Funk [EMAIL PROTECTED] wrote: See http://jakarta.apache.org/tomcat/tomcat-5.0-doc/catalina/docs/api/org/apache/catalina/valves/AccessLogValve.html In particular:

Re: Logging Server Responses

2005-06-09 Thread Tim Funk
Its the time for Servlet.service(...) to be processed. [Which includes any middleware/application server and database processings] -Tim TK wrote: Is the time recorded (using %D) includes time taken for middleware/application server and database processings? On 6/7/05, Tim Funk [EMAIL

Re: Logging Server Responses

2005-06-09 Thread Mario Ivankovits
And - I think - partially the time taken to send back the response. Its the time for Servlet.service(...) to be processed. [Which includes any middleware/application server and database processings] Is the time recorded (using %D) includes time taken for middleware/application server and

Logging Server Responses

2005-06-07 Thread TK
Hi, I'm looking for ways to log server (Tomcat) responses so that I could figure out the time taken (in ms) for Tomcat to process a client request. The information I need to record include: 1. Request ID (e.g. client IP address and object requested), 2. Date and time (in ms) the request is

Re: Logging Server Responses

2005-06-07 Thread Tim Funk
See http://jakarta.apache.org/tomcat/tomcat-5.0-doc/catalina/docs/api/org/apache/catalina/valves/AccessLogValve.html In particular: %D - Time taken to process the request, in millis %T - Time taken to process the request, in seconds Otherwise use a filter and rely on: %{xxx}r -Tim TK wrote: