check out http://www.analog.cx/ it will run all sorts of reports on your web
sites.
> 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.
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_parser_unique_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/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2
-f8d975cf8c07&displaylang=en
Hope this answers your question!
Good Luck!

Signature
Regards,
Kristofer Gafvert
http://www.gafvert.info/iis/ - IIS Related Info
>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 - 31 Dec 2005 21:20 GMT
Sorry, i did not explain that C:\LogFiles\web\ex* must be replaced by the
folder where the logfiles are stored.

Signature
Regards,
Kristofer Gafvert
http://www.gafvert.info/iis/ - IIS Related Info
>Hello,
>
[quoted text clipped - 39 lines]
>
>Good Luck!