LogParser syntax to see long-running pages
After enabling the time-taken logfile attribute, you can view the longest-running pages (in milliseconds) by using a SQL query and LogParser:
logparser -o:DATAGRID "select cs-uri-stem,time-taken,cs-username fro
m ex080214.log where time-taken > 10000 order by time-taken"
This will return a datagrid where you can review the pages that took the longest, and troubleshoot them.
logparser -o:DATAGRID "select cs-uri-stem,time-taken,cs-username fro
m ex080214.log where time-taken > 10000 order by time-taken"
This will return a datagrid where you can review the pages that took the longest, and troubleshoot them.
<< Home