Re: Access_log name format

2011-06-29 Thread BJ Freeman
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:555) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:852) at

Re: Access_log name format

2011-06-29 Thread Mike
Thanks BJ and Adrian. I was hoping for an easy config change. I'll probably end up just creating a daily symlink via cron. Thanks. On Wed, Jun 29, 2011 at 6:10 AM, BJ Freeman bjf...@free-man.net wrote:        at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:555)      

Re: Access_log name format

2011-06-29 Thread BJ Freeman
take a look at http://awstats.sourceforge.net/ Mike sent the following on 6/29/2011 7:55 AM: Thanks BJ and Adrian. I was hoping for an easy config change. I'll probably end up just creating a daily symlink via cron. Thanks. On Wed, Jun 29, 2011 at 6:10 AM, BJ Freeman bjf...@free-man.net

Re: Access_log name format

2011-06-29 Thread Mike
Thanks BJ, but I wasn't looking for statistics. I'm trying to create a continuous log tailer that looks for specific things related to security (i.e. lock out an IP that is attempting a scan). Its annoying that the access log is acting different from the other log files, which makes the tailing

Re: Access_log name format

2011-06-29 Thread BJ Freeman
I though you might find how they handle taking log files and converting them to what they use them for. Might be able to use the chunk of code and save you some programming. Mike sent the following on 6/29/2011 11:01 AM: Thanks BJ, but I wasn't looking for statistics. I'm trying to create a

Re: Access_log name format

2011-06-29 Thread BJ Freeman
you can also get this info from the session, request, and context objects. take a look at org.ofbiz.webapp.control.ContextFilter.doFilter which is the first place ofbiz injects into Tomcat. you can write a listener to put in the the Ecommerce webapp that will also achieve the same thing. Mike

Re: Access_log name format

2011-06-29 Thread Jacques Le Roux
Mike, OOTOMH, by default access log are rotated and daily created. So at the end you rotate after one year... See Tomcat log about that, there are parameters http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html#Access_Log_Valve Also

Re: Access_log name format

2011-06-29 Thread Mike
Here is what I ended up doing. $ crontab -l # # Update access_log symlink every 10 minutes # 0/10 * * * * cd /opt/ofbiz/runtime/logs; ln -sf access_log.`date '+%Y-%m-%d'` access_log Seems to work. Thanks. On Wed, Jun 29, 2011 at 11:48 AM, Jacques Le Roux jacques.le.r...@les7arts.com wrote:

Access_log name format

2011-06-28 Thread Mike
In my runtime/logs directory, access_log get created like this: -rw-rw 1 ofbiz ofbiz 72258 2011-06-26 23:58 access_log.2011-06-26 -rw-rw 1 ofbiz ofbiz 100759 2011-06-27 23:54 access_log.2011-06-27 -rw-rw 1 ofbiz ofbiz 4689194 2011-06-28 16:41 access_log.2011-06-28 Is there a way

Re: Access_log name format

2011-06-28 Thread Adrian Crum
Those are created by Catalina. Try searching Tomcat docs. -Adrian On 6/29/2011 12:49 AM, Mike wrote: In my runtime/logs directory, access_log get created like this: -rw-rw 1 ofbiz ofbiz 72258 2011-06-26 23:58 access_log.2011-06-26 -rw-rw 1 ofbiz ofbiz 100759 2011-06-27 23:54