What Are Some Good .NET Profilers? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:13:20Z http://stackoverflow.com/feeds/question/3927 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers 32 What Are Some Good .NET Profilers? ricree 2008-08-06T20:14:57Z 2009-10-26T13:47:55Z <p>What profilers have you used when working with .net programs, and which would you particularly recommend?</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/3931#3931 1 Answer by Kev for What Are Some Good .NET Profilers? Kev 2008-08-06T20:17:06Z 2008-08-06T20:17:06Z <P>I've worked with RedGate's profiler in the past. Did the job for me.</P> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/3932#3932 7 Answer by Michael Stum for What Are Some Good .NET Profilers? Michael Stum 2008-08-06T20:17:59Z 2008-08-06T20:17:59Z <p>I've been working with JetBrains dotTrace for WinForms and Console Apps (not tested on ASP.net yet), and it works quite well:</p> <p><a href="http://www.jetbrains.com/profiler/" rel="nofollow">http://www.jetbrains.com/profiler/</a></p> <p>They recently also added a "Personal License" that is significantly cheaper than the corporate one. Still, if anyone else knows some cheaper or even free ones, I'd like to hear as well :-)</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/3934#3934 6 Answer by palmsey for What Are Some Good .NET Profilers? palmsey 2008-08-06T20:19:00Z 2008-08-06T20:19:00Z <p><a href="http://www.red-gate.com/products/ants_profiler/index.htm" rel="nofollow">ANTS Profiler</a>. I haven't used many, but I don't really have any complaints about ANTS. The visualization is really helpful.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/3935#3935 7 Answer by Greg Hurlman for What Are Some Good .NET Profilers? Greg Hurlman 2008-08-06T20:19:16Z 2008-08-06T20:19:16Z <p>Don't forget <a href="http://nprof.sourceforge.net/Site/Description.html" rel="nofollow" title="SourceForge">nProf</a> - a prefectly good, freeware profiler.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/34278#34278 20 Answer by TrolleFar for What Are Some Good .NET Profilers? TrolleFar 2008-08-29T09:46:26Z 2008-08-29T09:46:26Z <p>I recently discovered EQATEC Profiler <a href="http://www.eqatec.com/tools/profiler" rel="nofollow">http://www.eqatec.com/tools/profiler</a>. It works with most .NET versions and on a bunch of platforms. It is easy to use and it is free.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/34281#34281 5 Answer by Lars Truijens for What Are Some Good .NET Profilers? Lars Truijens 2008-08-29T09:49:56Z 2008-08-29T09:49:56Z <p><a href="http://www.automatedqa.com/products/aqtime/index.asp" rel="nofollow">AutomatedQA AQTime</a> for timing and <a href="http://memprofiler.com/" rel="nofollow">SciTech MemProfiler</a> for memory.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/36650#36650 1 Answer by Ant for What Are Some Good .NET Profilers? Ant 2008-08-31T05:12:31Z 2008-08-31T05:12:31Z <p>In the past, I’ve used the profiler that ships with <a href="http://en.wikipedia.org/wiki/VSTS_Profiler" rel="nofollow">Visual Studio Team System</a>.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/100490#100490 14 Answer by Matt Howells for What Are Some Good .NET Profilers? Matt Howells 2008-09-19T08:29:08Z 2009-10-26T13:47:55Z <p>I have used JetBrains dotTrace and Redgate ANTS extensively. They are fairly similar in features and price. They both offer useful performance profiling and quite basic memory profiling.</p> <p>dotTrace integrates with Resharper, which is really convenient, as you can profile the performance of a unit test with one click from the IDE. However, dotTrace often seems to give spurious results (e.g. saying that a method took several years to run)</p> <p>I prefer the way that ANTS presents the profiling results. It shows you the source code and to the left of each line tells you how long it took to run. dotTrace just has a tree view.</p> <p>EQATEC profiler is quite basic and requires you to compile special instrumented versions of your assemblies which can then be run in the EQATEC profiler. It is, however, free.</p> <p>Overall I prefer ANTS for performance profiling, although if you use Resharper then the integration of dotTrace is a killer feature and means it beats ANTS in usability.</p> <p>The free Microsoft CLR Profiler is all you need for .NET memory profiling.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/100525#100525 0 Answer by leppie for What Are Some Good .NET Profilers? leppie 2008-09-19T08:38:59Z 2008-09-19T08:38:59Z <p>Unfortunate most of the profilers I tried failed when used with tail calls, most notably ANTS. I just end up writing my own. There is a simple implementation on CodeProject that you can use as a base.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/100556#100556 0 Answer by utility73 for What Are Some Good .NET Profilers? utility73 2008-09-19T08:48:46Z 2008-09-19T08:48:46Z <p><a href="http://www.intel.com/cd/software/products/asmo-na/eng/219898.htm" rel="nofollow">Intel® VTune™ Performance Analyzer</a> for quick sampling</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/206760#206760 3 Answer by Sam Saffron for What Are Some Good .NET Profilers? Sam Saffron 2008-10-15T22:25:20Z 2008-10-15T22:25:20Z <p>Don't forget the awesome scitech <a href="http://memprofiler.com/" rel="nofollow">.net memory profiler</a></p> <p>It's great for tracking down why your .net app is running out of memory. </p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/460455#460455 0 Answer by Prads for What Are Some Good .NET Profilers? Prads 2009-01-20T08:29:09Z 2009-01-20T08:29:09Z <p>NuMega DevPartner Studio is the best, I have used it and it works great.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/727989#727989 0 Answer by shaunmartin for What Are Some Good .NET Profilers? shaunmartin 2009-04-07T23:29:35Z 2009-04-07T23:29:35Z <p>I would add that dotTrace's ability to <strong>diff memory and performance trace sessions</strong> is absolutely invaluable (ANTS may also have a memory diff feature, but I didn't see a performance diff).</p> <p>Being able to run a profiling session before and after a bug fix or enhancement, then compare the results is incredibly valuable, especially with a mammoth legacy .NET application (as in my case) where performance was never a priority and where finding bottlenecks could be VERY tedious. Doing a before-and-after diff allows you to see the <strong>change in call count for each method</strong> and the <strong>change in duration for each method</strong>.</p> <p>This is helpful not only during code changes, but also if you have an application that uses a different database, say, for each client/customer. If one customer complains of slowness, you can run a profiling session using their database and compare the results with a "fast" database to determine which operations are contributing to the slowness. Of course there are many database-side performance tools, but sometimes I really helps to see the performance metrics from the application side (since that's closer to what the user's actually seeing).</p> <p><strong>Bottom line: dotTrace works great, and the diff is invaluable.</strong></p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/956437#956437 0 Answer by Mike Dunlavey for What Are Some Good .NET Profilers? Mike Dunlavey 2009-06-05T15:17:10Z 2009-06-05T15:17:10Z <p>I've found plenty of problems in a big C# app using <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">this</a>.</p> <p>Usually the problem occurs during startup or shutdown as plugins are being loaded, and big data structures are being created, destroyed, serialized, or deserialized. Often they are created and initialized more than once, and change handlers get added multiple times, further compounding the problem.</p> <p>In cases like this, the program can be so sluggish that only 2 samples are sufficient to pinpoint the guilty method / function / property call sites.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/1095127#1095127 1 Answer by pablo for What Are Some Good .NET Profilers? pablo 2009-07-07T22:07:10Z 2009-07-07T22:07:10Z <p>The latest version of ANTS memory profiler (I think it's 5) simply rocks!!! I was haunting a leak using WinDbg and SOS since it proved to be the best way before, then I tried ANTS and I got it in minutes. Really a wonderful piece of software.</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/1475257#1475257 1 Answer by Ben Robbins for What Are Some Good .NET Profilers? Ben Robbins 2009-09-25T03:16:32Z 2009-09-25T03:16:32Z <p>Others have covered performance profiling, but <strong>with regards to memory profiling</strong> I'm currently evaluating both the Scitech .NET Memory Profiler 3.1 and ANTS Memory Profiler 5.1 (current versions as of September 2009). I tried the JetBrains one a year or two ago and it wasn't as good as ANTS (for memory profiling) so I haven't bothered this time. From reading the web sites it looks like it doesn't have the same <em>memory profiling</em> features as the other two.</p> <p>Both ANTS and the Scitech memory profiler have features that the other doesn't, so which is best will depend upon your preferences. Generally speaking, the Scitech one provides more detailed information while the ANTS one is really incredible at identifying the leaking object. Overall, I prefer the ANTS one because it is so quick at identifying possible leaks.</p> <p>Here are the main the pros and cons of each from my experience:</p> <p><strong>Common Features of ANTS and Scitech .NET Memory Profiler</strong></p> <ul> <li>Real-time analysis feature</li> <li>Excellent how-to videos on their web sites</li> <li>Easy to use</li> <li>Reasonably performant (obviously slower than without the profiler attached, but not so much you become frustrated)</li> <li>Show instances of leaking objects</li> <li>Basically they both do the job pretty well</li> </ul> <p><strong>ANTS</strong></p> <ul> <li><strong>One-click filters to find common leaks</strong> including: objects kept alive only by event handlers, objects that are disposed but still live and objects that are only being kept alive by a reference from a disposed object. This is probably the killer feature of ANTS - finding leaks is incredibly fast because of this. In my experience, the majority of leaks are caused by event handlers not being unhooked and ANTS just takes you straight to these objects. Awesome.</li> <li>Object retention graph. While the same info is available in Scitech, it's much easier to interpret in ANTS.</li> <li>Shows size with children in addition to size of the object itself (but only when an instance is selected unfortunately, not in the overall class list).</li> <li>Better integration to Visual Studio (right-click on graph to jump to file)</li> </ul> <p><strong>Scitech .NET Memory Profiler</strong></p> <ul> <li>Shows stack trace when object was allocated. This is <strong>really</strong> useful for objects that are allocated in lots of different places. With ANTS it is difficult to determine exactly where the leaked object was created.</li> <li>Shows count of disposable objects that were not disposed. While not indicative of a leak, it does identify opportunities to fix this problem and improve your application performance as a result of faster garbage collection.</li> <li>More detailed filtering options (several columns can be filtered independently).</li> <li>Presents info on total objects created (including those garbage collected). ANTS only shows 'live' object stats. This makes it easier to analyze and tune overall application performance (eg. identify where lots of objects being created unnecessarily that aren't necessarily leaking).</li> </ul> <p>By way of summary, I think ANTS helps you find what's leaking faster while Scitech provides a bit more detail about your overall application memory performance and individual objects once you know what to look at (eg. stack trace on creation). If the stack trace and tracking of undisposed disposable objects was added to ANTS I wouldn't see the need to use anything else.</p>