문제

I'm trying to collect some performance metrics for IIS with a C# application. In particular I would like to get the time each request takes. Is there a performance counter for this? Or is this written into an IIS log file that I could parse (If so, is there a library for parsing this data)?

도움이 되었습니까?

해결책

By default, IIS logs every request to the LogFiles folder (C:\inetpub\logs\LogFiles)

Also by default, the last column in the log is the time taken for the request to complete.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top