Re: W3C log format in Tomcat 4?

2005-08-02 Thread Tim Funk
This page has some links .. http://jakarta.apache.org/tomcat/bugreport.html -Tim Jason wrote: Tim, Perfect, that worked exactly like I needed it to. Thank you VERY much! Is there a searcable archive of all these mailing list questions and responses?

W3C log format in Tomcat 4?

2005-08-01 Thread Jason
I'm new to Tomcat 4 and am trying to figure out how to configure my logs so that Deepmetrix's LiveStats 7 can import them. Does Tomcat 4 support logging to the W3C Extended logging format? If so, could you provide me with a link to a resource that tells how to configure this? Thanks, Jason

Re: W3C log format in Tomcat 4?

2005-08-01 Thread Mark Thomas
Jason, See http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/valve.html You want the AccessLogValve Mark Jason wrote: I'm new to Tomcat 4 and am trying to figure out how to configure my logs so that Deepmetrix's LiveStats 7 can import them. Does Tomcat 4 support logging to the W3C

Re: W3C log format in Tomcat 4?

2005-08-01 Thread Tim Funk
Try the ExtendedAccessLogValve. You'll need to look in the javadocs for the details. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/catalina/docs/api/org/apache/catalina/valves/ExtendedAccessLogValve.html -Tim Jason wrote: I'm new to Tomcat 4 and am trying to figure out how to configure

Re: W3C log format in Tomcat 4?

2005-08-01 Thread Jason
Tim, This looks like it is what I was looking for. Since I'm very new to Tomcat, I'm struggling to figure out how to implement this valve. Do you have an example of a standard implementation that you could send me that I could paste into my server.xml file? Thanks a bunch for your help! Jason

Re: W3C log format in Tomcat 4?

2005-08-01 Thread Tim Funk
I think this will work ... Valve className=org.apache.catalina.valves.ExtendedAccessLogValve directory=logs pattern='c-ip cs-method cs-uri sc-status time' prefix=localhost_access_log. suffix=.txt resolveHosts=false/ -Tim Jason wrote: Tim, This looks like it

Re: W3C log format in Tomcat 4?

2005-08-01 Thread Jason
Tim, Perfect, that worked exactly like I needed it to. Thank you VERY much! Is there a searcable archive of all these mailing list questions and responses? Thanks, Jason --- Tim Funk [EMAIL PROTECTED] wrote: I think this will work ... Valve