3

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

2 Answers 2

4

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

6

Using Microsoft's IIS LogParser:

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

(all in one line)

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.