, IIS . . Perfview .
Say, for example, that you want to track .NET stack information and stop whenever a web request takes more than 3 seconds. Then you run the following command at the prompt
perfview collect -StopOnRequestOverMsec:3000 -ThreadTime -NoNGenRundown -Merge:false -Zip:false -LogFile:perfviewlog.log -CircularMB:512 -DataFile:LongRequest.etl
Then you should use perfview to parse the LongRequest.etl file and track the .NET call. See Microsoft Channel9 for details .
source
share