|
Home > Archive > IIS Server > December 2005 > Can I use perfmon to run reports on how many hits some of my web sites get per day?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Can I use perfmon to run reports on how many hits some of my web sites get per day?
|
|
|
| Can I use perfmon to run reports on how many hits some of my web sites get
per day? Running Windows Server 2003 SP1. IIS 6.0.
--
Spin
| |
|
| check out http://www.analog.cx/ it will run all sorts of reports on your web
sites.
"Spin" <Spin@spin.com> wrote in message
news:41o0meF1fb93jU1@individual.net...
> Can I use perfmon to run reports on how many hits some of my web sites get
> per day? Running Windows Server 2003 SP1. IIS 6.0.
>
> --
> Spin
>
>
| |
| Kristofer Gafvert 2005-12-31, 5:54 pm |
| Hello,
No, perfmon cannot generate such report. You need to use a log analyser to
analyse the log files.
List of log analyser (a search on google.com will give you more links):
http://www.iisfaq.com/Default.aspx?tabid=2550
You can also use Log Parser to generate these kind of reports. I have an
article that talks about unique visitors:
"Log Parser: Find out how many unique visitors your website has"
http://www.gafvert.info/notes/log_p...ue_visitors.htm
If you want hits instead of unique visitors, the SQL query would look like:
SELECT date, count(date) AS Hits
FROM 'C:\LogFiles\web\ex*'
GROUP BY date
A sample run using logparser:
logparser "SELECT date, count(date) AS Hits FROM 'c:\logfiles\gafvert\ex*'
GROUP BY date" -i:W3C
(This is one single line)
Or to get a chart (see example in the link above, this also requires
Microsoft Office Web Components):
logparser "SELECT date, count(date) AS Hits Into test.gif FROM
'c:\logfiles\gafvert\ex*' GROUP BY date" -i:W3C -o:CHART -chartTy
pe:ColumnStacked
(Again only one line)
LogParser can be downloaded from:
http://www.microsoft.com/downloads/...&displaylang=en
Hope this answers your question!
Good Luck!
--
Regards,
Kristofer Gafvert
http://www.gafvert.info/iis/ - IIS Related Info
Spin wrote:
>Can I use perfmon to run reports on how many hits some of my web sites get
>per day? Running Windows Server 2003 SP1. IIS 6.0.
| |
| Kristofer Gafvert 2005-12-31, 5:54 pm |
| Sorry, i did not explain that C:\LogFiles\web\ex* must be replaced by the
folder where the logfiles are stored.
--
Regards,
Kristofer Gafvert
http://www.gafvert.info/iis/ - IIS Related Info
Kristofer Gafvert wrote:
>Hello,
>
>No, perfmon cannot generate such report. You need to use a log analyser to
>analyse the log files.
>
>List of log analyser (a search on google.com will give you more links):
>http://www.iisfaq.com/Default.aspx?tabid=2550
>
>You can also use Log Parser to generate these kind of reports. I have an
>article that talks about unique visitors:
>
>"Log Parser: Find out how many unique visitors your website has"
>http://www.gafvert.info/notes/log_p...ue_visitors.htm
>
>If you want hits instead of unique visitors, the SQL query would look like:
>
>SELECT date, count(date) AS Hits
>FROM 'C:\LogFiles\web\ex*'
>GROUP BY date
>
>A sample run using logparser:
>
>logparser "SELECT date, count(date) AS Hits FROM 'c:\logfiles\gafvert\ex*'
>GROUP BY date" -i:W3C
>
>(This is one single line)
>
>Or to get a chart (see example in the link above, this also requires
>Microsoft Office Web Components):
>
>logparser "SELECT date, count(date) AS Hits Into test.gif FROM
>'c:\logfiles\gafvert\ex*' GROUP BY date" -i:W3C -o:CHART -chartTy
>pe:ColumnStacked
>
>(Again only one line)
>
>LogParser can be downloaded from:
>
>http://www.microsoft.com/downloads/...&displaylang=en
>
>
>Hope this answers your question!
>
>Good Luck!
|
|
|
|
|