RE: Counting Page Hits

2004-11-11 Thread Justin Jaynes
Thanks! Justin Jaynes --- Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, Could you give me a quick pointer in the right direction for a good, popular log analyzer? Then I can study up. I would appreciate the help so much. Easy. Enable the AccessLogValve in conf/server.xml, with

RE: Counting Page Hits

2004-11-11 Thread Didier McGillis
awstats is something I use. From: Justin Jaynes [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: Counting Page Hits Date: Thu, 11 Nov 2004 10:38:12 -0800 (PST) Thanks! Justin Jaynes --- Shapira, Yoav [EMAIL PROTECTED] wrote: Hi

Re: Counting Page Hits

2004-11-10 Thread Tim Funk
The AccessLogValve allows for conditional logging. So you'll need to add code (Filter or modify servlets) to add/not add an entry to the HttpServletRequest so the Valve can decide whether to log the entry. Or much easier is an COTS access log parser. -Tim Justin Jaynes wrote: What is the

RE: Counting Page Hits

2004-11-10 Thread Shapira, Yoav
Hi, answer I've seen in the past is that you should use log analysis tools on the logs, which are in a fairly standard format. Just a tiny correction: standard format completely, not just fairly standard. CLF and ELF are both supported and strictly adhered to, and these are the standard access

Re: Counting Page Hits

2004-11-10 Thread Justin Jaynes
The general answer I've seen in the past is that you should use log analysis tools Unfortunatly, I have never been introduced to log analysis tools. Could you give me a quick pointer in the right direction for a good, popular log analyzer? Then I can study up. I would appreciate the help

RE: Counting Page Hits

2004-11-10 Thread Shapira, Yoav
Hi, Could you give me a quick pointer in the right direction for a good, popular log analyzer? Then I can study up. I would appreciate the help so much. Easy. Enable the AccessLogValve in conf/server.xml, with pattern common (the default) or combined (for additional info). Use the server a

Re: Counting Page Hits

2004-11-10 Thread Tim Funk
This is an apples to orangles comparison. commons-logging and log4j are for logging devloper errors and for debugging statements. Its purpose is for logging errors, stack traces, etc instead of using System.out.println() Access logs are pages or any other HTTP based request. There are free

Counting Page Hits

2004-11-09 Thread Justin Jaynes
What is the easiest way to monitor hits to resources (files or pages) on my tomcat 5 server? Do I write my own ticker into each page I want to monitor and store the incremented value to a database? Or is there a much simpler solution already implimented in some tomcat management software (I have

Re: Counting Page Hits

2004-11-09 Thread Steven J. Owens
On Tue, Nov 09, 2004 at 05:55:07PM -0800, Justin Jaynes wrote: What is the easiest way to monitor hits to resources (files or pages) on my tomcat 5 server? Do I write my own ticker into each page I want to monitor and store the incremented value to a database? Or is there a much simpler

Re: Counting Page Hits

2004-11-09 Thread Parsons Technical Services
Users List [EMAIL PROTECTED] Sent: Tuesday, November 09, 2004 9:40 PM Subject: Re: Counting Page Hits On Tue, Nov 09, 2004 at 05:55:07PM -0800, Justin Jaynes wrote: What is the easiest way to monitor hits to resources (files or pages) on my tomcat 5 server? Do I write my own ticker into each page I