Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsWindows Server 2003Windows 2000Windows NTSmall Business ServerVirtual ServerExchange ServerIISHost Integration ServerISA ServerSMSWSUSMOMWindows Media ServerSecurityCertification
Related Topics
SQL ServerMS WindowsMS OfficePC HardwareMore Topics ...

Windows Server Forum / IIS / IIS General Topics / December 2005

Tip: Looking for answers? Try searching our database.

Can I use perfmon to run reports on how many hits some of my web sites get per day?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Spin - 31 Dec 2005 18:23 GMT
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.

Signature

Spin

Dave - 31 Dec 2005 18:31 GMT
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.
Kristofer Gafvert - 31 Dec 2005 21:17 GMT
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!
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2010 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.