Shiraz Bhaiji Asked: 2011-05-23 01:43:38 +0800 CST2011-05-23 01:43:38 +0800 CST 2011-05-23 01:43:38 +0800 CST Extract statistics from IIS log 772 Is there a simple way to find the number of calls to a specific page from the IIS log? logging iis 2 Answers Voted splattne 2011-05-23T07:38:58+08:002011-05-23T07:38:58+08:00 Using Microsoft's IIS LogParser: LogParser -o:w3c "SELECT COUNT(*) AS [Requests] FROM {filename} WHERE cs-uri-query = '{requestUrl}' (all in one line) Best Answer Evan Anderson 2011-05-23T01:50:49+08:002011-05-23T01:50:49+08:00 How about find /c "/url/to/page" <logfilename>. It's cheap and simple but might just do what you need.
Using Microsoft's IIS LogParser:
(all in one line)
How about
find /c "/url/to/page" <logfilename>
. It's cheap and simple but might just do what you need.