Re: Log analysis with Apache, mod_jk and 2 Tomcat instances

2006-09-13 Thread Rainer Jung
Marc Richards wrote: Also you can configure Apache to log the value of the session cookie (if you're using session cookies -- LogFormat "%{JSESSIONID}C..."), which includes the lb route so that you even know which instance of Tomcat took the request. ... and finally once we release the next mod

Re: Log analysis with Apache, mod_jk and 2 Tomcat instances

2006-09-12 Thread Marc Richards
Also you can configure Apache to log the value of the session cookie (if you're using session cookies -- LogFormat "%{JSESSIONID}C..."), which includes the lb route so that you even know which instance of Tomcat took the request. -marc --- Tim Funk <[EMAIL PROTECTED]> wrote: > If apache is servi

Re: Log analysis with Apache, mod_jk and 2 Tomcat instances

2006-09-12 Thread Tim Funk
If apache is serving all the traffic - then tomcat doesn't need to record any access logs. (Unless you need monitor how much load went to each tomcat) Apache will have every request. If you combine the logs - you would double count some of your requests. -Tim Frank Niedermann wrote: Hello,