RSS Feed for This PostCurrent Article

Free .NET Profiler

Here are some alternative to Visual Studio Team System Profiler if you are looking for free .NET profiler tools

The CLR Profiler includes a number of very useful views of the allocation profile, including a histogram of allocated types, allocation and call graphs, a time line showing GCs of various generations and the resulting state of the managed heap after those collections, and a call tree showing per-method allocations and assembly loads.

The EQATEC Profiler is a code profiler, not a memory profiler. So it’s all about making your app run faster, not about tracking objects and memory.
The report will tell you exactly how many times each method was called and how long it took. You can then speedup your application by optimizing just the most expensive methods.

image

SlimTune is a free profiler and performance analysis/tuning tool for .NET based applications, including C#, VB.NET, IronPython, and more. It provides many powerful features, such as remote profiling, real time results, multiple plugin-based visualizations, and much more. The source code is available under the terms of the MIT License.

SlimTune is currently in the prototyping phase of development, but a preview release is available for testing and feedback is welcome. Both x86 and x64 targets are supported, but only sampling based profiling is available in the release.

image

Popularity: 2% [?]


Trackback URL


RSS Feed for This PostPost a Comment