Equivalent to callgrind for java?

Is there a free callgrind equivalent for java? basically, I just need something that gives me the number of loops or the time it takes for each method and function of my Java code.

I suppose I should mention that I use mac, which means that the eclipse thing below does not work for me, I suppose.

+7
java callgrind runtime
source share
2 answers

Good thing you could start with Sun Java VisualVM application profiling.

+4
source share
+1
source share

All Articles