I'm using MS Log Parser to do simple analytics against IIS logs.
I want a query that generates a report indicating the count of unique IPs hitting URLs, resulting in something like:
URL | Unique_IPs | Total_Views
url1 3 100 url2 5 253
etc.
The problem I'm having is that Log Parser doesn't allow count(DISTINCT c-ip) when using a group by, and I need the group by to get the hit count per URL.
Anyone know how to do this kind of query in Log Parser?
Thanks!