IIS Log Parser - Need Query to find “total requests taking > x secs” / “Total Requests” grouped by URL
问题 I am supporting an application that is having occasional performance issues. The client wants to know how often a page is slow. i.e. Total times a page took greater than x secs / Total number of requests for the page I would like to write a single query to fetch the desired data. Something like this in SQL would probably work but isn't working in IIS Log parser. select URL, count(case when time > 100 then 1 else null end), count(*) from table1 group by URL 回答1: The problem here is that you