Hi everybody,
i try to get the hits from a an aspx site so far is that working but the resault is wrong. The top site has 75089 hits and that can't be true(small SharePoint Environment).
My Query:
Select Top 50 cs-uri-stem AS Url, Avg(time-taken) AS [Response Time], Count(cs-username) AS Hits
FROM '[LOGFILEPATH]'
Where (cs-uri-stem like '%%.asp' or cs-uri-stem like '%%.aspx')
Group By Url
Order by hits DESC
Is there something wrong?