Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any tool that says how long each method takes to run?

some parts of my program are way slow. and I was wondering if there is tool that i can use and for example it can tell me ok running methodA() took 100ms , etc ...or so useful info similar to that.

like image 572
Bohn Avatar asked Sep 22 '10 20:09

Bohn


3 Answers

If you are using Visual Studio Team System there is a builtin profiler in 'Performance Tools'. There is a ton of useful background on this at this blog.

I've found this extremely useful in identifying the 20% of my code that runs 80% of the time, and hence what I should worry about optimizing.

Another simple technique that can be surprisingly effective is to run your release code in the debugger, and interrupt it a few times (10 or so can be enough) while it's in the 'busy' state that you are trying to diagnose. You may find recurring callstack info that directs you to the general area of concern. Again, the 80/20 rule in effect.

like image 111
Steve Townsend Avatar answered Nov 15 '22 03:11

Steve Townsend


The System.Diagnostics namespace offers a helpful class called Stopwatch, which can be used to time parts of your code (think of it as a "poor man's profiler").

This is how you would use it:

Stopwatch stopwatch = new Stopwatch();
stopwatch.Start(); // Start timing

// This is what we want to time
DoSomethingWeSuspectIsSlow();

stopwatch.Stop();
Console.WriteLine("It took {0} ms.", stopwatch.ElapsedMilliseconds);
like image 42
Martin Törnwall Avatar answered Nov 15 '22 04:11

Martin Törnwall


Those kind of applications are known as "profilers"

Here's one for example: example

like image 3
Oren A Avatar answered Nov 15 '22 02:11

Oren A