Top "Profiling" questions

Profiling is the process of measuring an application or system by running an analysis tool called a profiler.

Find out the size of a .NET object

I'm trying to find out how much memory my objects take to see how many of them are ending up …

.net memory-management garbage-collection profiling
How do I use line_profiler (from Robert Kern)?

I have tried using the line_profiler module for getting a line-by-line profile over a Python file. This is what …

python python-2.7 profiling line-profiler
How to find memory leaks using visualvm

I suspect we have a major memory leak in our ActiveMQ connection bridge - we're seeing typical memory leak patterns (…

java memory-leaks profiling jvisualvm
use valgrind to know time(in seconds) spent in each function

is there any extension of valgrind, that can be used in the command window, that would help me know the …

c profiling valgrind
Profiling c++ on mac os x

I'm attempting to profile some c++ code on my mac (os x Lion) and I haven't been able to find …

macos profiling
How much memory does a C#/.NET object use?

I'm developing an application which currently have hundreds of objects created. Is it possible to determine (or approximate) the memory …

c# .net object memory profiling
.NET Memory Profiling Tools

Possible Duplicate: What Are Some Good .NET Profilers? I am on the lookout for good .NET CLR memory profiling tools. …

.net memory-profiling profiling
How to profile methods in Scala?

What is a standard way of profiling Scala method calls? What I need are hooks around a method, using which …

function scala profiling aspect
Profiling a running Java application in command line

I profile running Java applications often with VisualVM but it needs X to run on the machine. I know I …

java performance command-line jvm profiling
How can I profile my Android app?

I need to find where the bottlenecks are in my Android app. What profiling tools or techniques can I use?

java android performance profiling