Graphical profiler for Java?

I am looking for a JVM profiler like Python "run run run run". The feature that I miss the most is the visualization of the "square map", showing which methods use the most time to run.

http://www.vrplumber.com/programming/runsnakerun/screenshot-2.0.png

Any suggestions?

+5
source share
3 answers

If you look in the JDK_HOME / bin directory, you will find jvisualvm and jconsole, both of which will help in profiling.

There is an Eclipse plugin called TPTP , which I used before it worked very well.

+2

VisualVM might do something like this , although not in this square map format.

+1
source

All Articles