Is there a monitoring and profiling tool for .Net solutions like VisualVM for Java? [closed]
开发者_如何学JAVA
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionI want to view the heap and the objects inside them. Is there a .net monitoring and profiling tool which I could use to view heaps and memory of a asp.net and C# application?
I would suggest taking a look at ANTS Memory Profiler and ANTS Performance Profiler from Red Gate:
ANTS Memory Profiler:
http://www.red-gate.com/products/dotnet-development/ants-memory-profiler/
ANTS Performance Profiler:
http://www.red-gate.com/products/dotnet-development/ants-performance-profiler/
For such affordable tools, they do a fantastic job of identifying bottlenecks and memory leaks.
For viewing the heap, you can use CLR Profiler or the SOS Debugging Extension for the Visual Studio Debugger.
Consider SlimTune, an open-source .Net profiler.
精彩评论