You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Scott Birl <sb...@temple.edu> on 2017/04/28 15:38:26 UTC

[users@httpd] RE: Apache log analyzer?

> From: Rose, John B [mailto:jbrose@utk.edu] 
> Sent: Friday, April 28, 2017 11:18 AM
> To: users@httpd.apache.org
> Subject: [users@httpd] Apache log analyzer?
> 
> Any suggestions for an Apache log analyzer?
> 
> Thanks
> 


John:

I have found that different analyzers interpret the data differently.
Ive used AWStats, Analog for my co-workers who want hit results,
and a home-grown PERL script catered to what I wanted to see from a
back-end perspective.

I guess it really depends on what you're looking for.

http://www.awstats.org/
http://mirror.reverse.net/pub/analog/

HTH

Mr. S.A. Birl

Re: [users@httpd] Apache log analyzer?

Posted by Jerry K <ap...@oryx.us>.
I'm using Webalizer on both Solaris 10, Solaris 11 and OpenIndiana (open source 
Solaris based distro).

Webalizer should work on any Unix or Unix clone with a compiler.

Jerry


On 04/29/17 03:38 AM, Freek de Kruijf wrote:

>
> I use webalizer on a Linux system. Don't know is this package is available on
> other systems.
>
> Anyway you can separate log files for the different vhosts using ErrorLog and
> CustomLog in the vhost configuration files.
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Apache log analyzer?

Posted by Freek de Kruijf <f....@gmail.com>.
Op vrijdag 28 april 2017 20:18:32 CEST schreef Rose, John B:
> We have analog and awstats installed. But maybe we didn’t look close enough
> at of what they are capable.
 
> We would like to parse multiple virtual host log files find the ip’s
> accessing a particular URL’s within a given time range and be able to
> separate out which virtual host the log entry came from.
 
I use webalizer on a Linux system. Don't know is this package is available on 
other systems.

Anyway you can separate log files for the different vhosts using ErrorLog and 
CustomLog in the vhost configuration files.

-- 
fr.gr.

Freek de Kruijf


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Apache log analyzer?

Posted by Mitchell Krog <mi...@gmail.com>.
As mentioned already specify different logs for each vhost in the vhost
config files.

*VHOST1*
<VirtualHost *:80>
DocumentRoot /var/www/html/mywebsite1.com
ServerName mywebsite1.com
ErrorLog ${APACHE_LOG_DIR}/mywebsite1.com-error.log
CustomLog ${APACHE_LOG_DIR}/mywebsite1.com-access.log combined

*VHOST2*
<VirtualHost *:80>
DocumentRoot /var/www/html/mywebsite2.com
ServerName mywebsite2.com
ErrorLog ${APACHE_LOG_DIR}/mywebsite2.com-error.log
CustomLog ${APACHE_LOG_DIR}/mywebsite2.com-access.log combined

Then you individually go through each vhosts own log file, also try out
goaccess stats for generating stats for each host, not really a log
analyzer as such
but produces very nice visual information for your vhosts and gives you
quite a lot of useful information at the click of a button.
See attached screengrabs.
https://goaccess.io/

Regards
Mitch


From: Daniel <df...@gmail.com> <df...@gmail.com>
Reply: users@httpd.apache.org <us...@httpd.apache.org>
<us...@httpd.apache.org>
Date: 29 April 2017 at 10:32:42 AM
To:  <us...@httpd.apache.org> <us...@httpd.apache.org>
Subject:  Re: [users@httpd] Apache log analyzer?

Define a specific log for each virtualhost then.

2017-04-28 20:18 GMT+02:00 Rose, John B <jb...@utk.edu>:

> We have analog and awstats installed. But maybe we didn’t look close
> enough at of what they are capable.
>
> We would like to parse multiple virtual host log files find the ip’s
> accessing a particular URL’s within a given time range and be able to
> separate out which virtual host the log entry came from.
>
>
> On 4/28/17, 11:59 AM, "Jim Jagielski" <ji...@jaguNET.com> wrote:
>
> >It would be nice to reboot Analog, which has always been my goto. In
> >fact, I even booted up a Github repo (https://github.com/jimjag/analog)
> >where I was going to start fixing and adding things.
> >
> >> On Apr 28, 2017, at 11:38 AM, Scott Birl <sb...@temple.edu> wrote:
> >>
> >>> From: Rose, John B [mailto:jbrose@utk.edu]
> >>> Sent: Friday, April 28, 2017 11:18 AM
> >>> To: users@httpd.apache.org
> >>> Subject: [users@httpd] Apache log analyzer?
> >>>
> >>> Any suggestions for an Apache log analyzer?
> >>>
> >>> Thanks
> >>>
> >>
> >>
> >> John:
> >>
> >> I have found that different analyzers interpret the data differently.
> >> Ive used AWStats, Analog for my co-workers who want hit results,
> >> and a home-grown PERL script catered to what I wanted to see from a
> >> back-end perspective.
> >>
> >> I guess it really depends on what you're looking for.
> >>
> >> http://www.awstats.org/
> >> http://mirror.reverse.net/pub/analog/
> >>
> >> HTH
> >>
> >> Mr. S.A. Birl
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >> For additional commands, e-mail: users-help@httpd.apache.org
> >
> >
> >---------------------------------------------------------------------
> >To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >For additional commands, e-mail: users-help@httpd.apache.org
> >
>
>


--
*Daniel Ferradal*
IT Specialist

email         dferradal at gmail.com
linkedin     es.linkedin.com/in/danielferradal

Re: [users@httpd] Apache log analyzer?

Posted by Daniel <df...@gmail.com>.
Define a specific log for each virtualhost then.

2017-04-28 20:18 GMT+02:00 Rose, John B <jb...@utk.edu>:

> We have analog and awstats installed. But maybe we didn’t look close
> enough at of what they are capable.
>
> We would like to parse multiple virtual host log files find the ip’s
> accessing a particular URL’s within a given time range and be able to
> separate out which virtual host the log entry came from.
>
>
> On 4/28/17, 11:59 AM, "Jim Jagielski" <ji...@jaguNET.com> wrote:
>
> >It would be nice to reboot Analog, which has always been my goto. In
> >fact, I even booted up a Github repo (https://github.com/jimjag/analog)
> >where I was going to start fixing and adding things.
> >
> >> On Apr 28, 2017, at 11:38 AM, Scott Birl <sb...@temple.edu> wrote:
> >>
> >>> From: Rose, John B [mailto:jbrose@utk.edu]
> >>> Sent: Friday, April 28, 2017 11:18 AM
> >>> To: users@httpd.apache.org
> >>> Subject: [users@httpd] Apache log analyzer?
> >>>
> >>> Any suggestions for an Apache log analyzer?
> >>>
> >>> Thanks
> >>>
> >>
> >>
> >> John:
> >>
> >> I have found that different analyzers interpret the data differently.
> >> Ive used AWStats, Analog for my co-workers who want hit results,
> >> and a home-grown PERL script catered to what I wanted to see from a
> >> back-end perspective.
> >>
> >> I guess it really depends on what you're looking for.
> >>
> >> http://www.awstats.org/
> >> http://mirror.reverse.net/pub/analog/
> >>
> >> HTH
> >>
> >> Mr. S.A. Birl
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >> For additional commands, e-mail: users-help@httpd.apache.org
> >
> >
> >---------------------------------------------------------------------
> >To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> >For additional commands, e-mail: users-help@httpd.apache.org
> >
>
>


-- 
*Daniel Ferradal*
IT Specialist

email         dferradal at gmail.com
linkedin     es.linkedin.com/in/danielferradal

Re: [users@httpd] Apache log analyzer?

Posted by "Rose, John B" <jb...@utk.edu>.
We have analog and awstats installed. But maybe we didn’t look close enough at of what they are capable.

We would like to parse multiple virtual host log files find the ip’s accessing a particular URL’s within a given time range and be able to separate out which virtual host the log entry came from.


On 4/28/17, 11:59 AM, "Jim Jagielski" <ji...@jaguNET.com> wrote:

>It would be nice to reboot Analog, which has always been my goto. In
>fact, I even booted up a Github repo (https://github.com/jimjag/analog)
>where I was going to start fixing and adding things.
>
>> On Apr 28, 2017, at 11:38 AM, Scott Birl <sb...@temple.edu> wrote:
>> 
>>> From: Rose, John B [mailto:jbrose@utk.edu] 
>>> Sent: Friday, April 28, 2017 11:18 AM
>>> To: users@httpd.apache.org
>>> Subject: [users@httpd] Apache log analyzer?
>>> 
>>> Any suggestions for an Apache log analyzer?
>>> 
>>> Thanks
>>> 
>> 
>> 
>> John:
>> 
>> I have found that different analyzers interpret the data differently.
>> Ive used AWStats, Analog for my co-workers who want hit results,
>> and a home-grown PERL script catered to what I wanted to see from a
>> back-end perspective.
>> 
>> I guess it really depends on what you're looking for.
>> 
>> http://www.awstats.org/
>> http://mirror.reverse.net/pub/analog/
>> 
>> HTH
>> 
>> Mr. S.A. Birl
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>> For additional commands, e-mail: users-help@httpd.apache.org
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>For additional commands, e-mail: users-help@httpd.apache.org
>


Re: [users@httpd] Apache log analyzer?

Posted by Jim Jagielski <ji...@jaguNET.com>.
It would be nice to reboot Analog, which has always been my goto. In
fact, I even booted up a Github repo (https://github.com/jimjag/analog)
where I was going to start fixing and adding things.

> On Apr 28, 2017, at 11:38 AM, Scott Birl <sb...@temple.edu> wrote:
> 
>> From: Rose, John B [mailto:jbrose@utk.edu] 
>> Sent: Friday, April 28, 2017 11:18 AM
>> To: users@httpd.apache.org
>> Subject: [users@httpd] Apache log analyzer?
>> 
>> Any suggestions for an Apache log analyzer?
>> 
>> Thanks
>> 
> 
> 
> John:
> 
> I have found that different analyzers interpret the data differently.
> Ive used AWStats, Analog for my co-workers who want hit results,
> and a home-grown PERL script catered to what I wanted to see from a
> back-end perspective.
> 
> I guess it really depends on what you're looking for.
> 
> http://www.awstats.org/
> http://mirror.reverse.net/pub/analog/
> 
> HTH
> 
> Mr. S.A. Birl
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org