Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Graphing Profiler for Java?

I'm looking for a profiler for the JVM similar to Python's "run snake run". The feature I'm missing the most is the "square map" visualization showing which methods are taking the most time to run.

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

Any suggestions?

like image 607
erikcw Avatar asked Oct 13 '22 22:10

erikcw


1 Answers

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

There is an Eclipse Plug-in called TPTP that I've used before that worked pretty well.

like image 109
cyber-monk Avatar answered Oct 18 '22 03:10

cyber-monk