3

What is the best way to monitor memory/cpu/disk (reads/sec or total reads) utilisation for an ASP.NET (MVC) application (or and app pool). Are there any perf counters that can do that?

1 Answer 1

5

You can use the built in ASP.NET performance monitoring tools (Which will give you the cpu utilization/memory statistics), you could extend this further by enabling tracing which will provide you with further diagnostic information.

<configuration>
 <system.web>
   <trace enabled="true" pageOutput="false" requestLimit="40" localOnly="false"/>
 </system.web>
</configuration>

http://msdn.microsoft.com/en-us/library/3xxk09t8(v=vs.100).aspx

http://msdn.microsoft.com/en-us/library/0x5wc973(v=vs.100).aspx

Sign up to request clarification or add additional context in comments.

1 Comment

You might be also interested in IIS's Failed Request Trace and other ASP.NET related ETW sources. For example run on the command line: logman query providers "ASP.NET Events", logman query providers "IIS: WWW Global"

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.