vote up 32 vote down star
31

What profilers have you used when working with .net programs, and which would you particularly recommend?

flag

16 Answers

vote up 14 vote down check

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.

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)

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.

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.

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.

The free Microsoft CLR Profiler is all you need for .NET memory profiling.

link|flag
1  
The profiler in Visual Studio is also really easy to use, Visual Studio 2010 is in Beta and hence is free also. There have been multiple enhancements in 2010 for viewing contention and concurrency. try it... – Rick Sep 25 at 3:19
1  
@Rick Unfortunately the profiler of Visual Studio is not present in Professional Edition... – marco.ragogna Oct 26 at 9:58
vote up 1 vote down

Others have covered performance profiling, but with regards to memory profiling 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 memory profiling features as the other two.

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.

Here are the main the pros and cons of each from my experience:

Common Features of ANTS and Scitech .NET Memory Profiler

  • Real-time analysis feature
  • Excellent how-to videos on their web sites
  • Easy to use
  • Reasonably performant (obviously slower than without the profiler attached, but not so much you become frustrated)
  • Show instances of leaking objects
  • Basically they both do the job pretty well

ANTS

  • One-click filters to find common leaks 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.
  • Object retention graph. While the same info is available in Scitech, it's much easier to interpret in ANTS.
  • 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).
  • Better integration to Visual Studio (right-click on graph to jump to file)

Scitech .NET Memory Profiler

  • Shows stack trace when object was allocated. This is really 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.
  • 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.
  • More detailed filtering options (several columns can be filtered independently).
  • 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).

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

I've found plenty of problems in a big C# app using this.

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.

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.

link|flag
vote up 0 vote down

I would add that dotTrace's ability to diff memory and performance trace sessions is absolutely invaluable (ANTS may also have a memory diff feature, but I didn't see a performance diff).

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 change in call count for each method and the change in duration for each method.

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).

Bottom line: dotTrace works great, and the diff is invaluable.

link|flag
vote up 0 vote down

NuMega DevPartner Studio is the best, I have used it and it works great.

link|flag
vote up 3 vote down

Don't forget the awesome scitech .net memory profiler

It's great for tracking down why your .net app is running out of memory.

link|flag
Very nice tool. Easy to use and allows you to navigate through your object graph. I espacially like the 'realtime' memory tracking. It shows you how your object counts develop during the runtime of the application. – lowglider Jan 20 at 9:00
vote up 0 vote down

Intel® VTune™ Performance Analyzer for quick sampling

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

In the past, I’ve used the profiler that ships with Visual Studio Team System.

link|flag
vote up 5 vote down

AutomatedQA AQTime for timing and SciTech MemProfiler for memory.

link|flag
MemProfiler has save our team when we had a memory leak. I tried other tools, but no other tool gave the same detail. – Greg Ogle Sep 15 '08 at 0:26
vote up 20 vote down

I recently discovered EQATEC Profiler http://www.eqatec.com/tools/profiler. It works with most .NET versions and on a bunch of platforms. It is easy to use and it is free.

link|flag
Fails on tail calls too :( Reported bug. – leppie Jul 16 at 17:44
Only profiles methods unfortunately. – Brian Ortiz Oct 16 at 1:17
vote up 7 vote down

Don't forget nProf - a prefectly good, freeware profiler.

link|flag
1  
Looks kind of abandoned... only an alpha release from 2006 :-( – Mauricio Scheffer May 12 at 2:25
vote up 6 vote down

ANTS Profiler. I haven't used many, but I don't really have any complaints about ANTS. The visualization is really helpful.

link|flag
vote up 6 vote down

I've been working with JetBrains dotTrace for WinForms and Console Apps (not tested on ASP.net yet), and it works quite well:

http://www.jetbrains.com/profiler/

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 :-)

link|flag
vote up 1 vote down

I've worked with RedGate's profiler in the past. Did the job for me.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.