Is there a simple way to find the number of calls to a specific page from the IIS log?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

How about find /c "/url/to/page" <logfilename>. It's cheap and simple but might just do what you need.

link|improve this answer
feedback

Using Microsoft's IIS LogParser:

LogParser -o:w3c "SELECT COUNT(*) AS [Requests] FROM {filename}
WHERE cs-uri-query = '{requestUrl}'

(all in one line)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.