What free tools are available to analyze lock contention in java ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T20:47:44Z http://stackoverflow.com/feeds/question/1043775 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1043775/what-free-tools-are-available-to-analyze-lock-contention-in-java 3 What free tools are available to analyze lock contention in java ? krosenvold 2009-06-25T13:01:58Z 2009-06-25T13:45:14Z <p>I need to determine which locks are the most-contended-for in my application code. What free tools can I use to determine this ? </p> http://stackoverflow.com/questions/1043775/what-free-tools-are-available-to-analyze-lock-contention-in-java/1043851#1043851 2 Answer by kai1968 for What free tools are available to analyze lock contention in java ? kai1968 2009-06-25T13:16:39Z 2009-06-25T13:16:39Z <p>VisualVM (Part of Java 1.6) (<a href="http://java.sun.com/developer/technicalArticles/J2SE/monitoring/" rel="nofollow">see</a>)</p> http://stackoverflow.com/questions/1043775/what-free-tools-are-available-to-analyze-lock-contention-in-java/1043900#1043900 2 Answer by pfranza for What free tools are available to analyze lock contention in java ? pfranza 2009-06-25T13:23:41Z 2009-06-25T13:23:41Z <p>you can use jconsole or jstack both in the bin directory of your JDK. The jconsole in particular allows you to connect to your process and monitor the threads including which resources they have locked, and it can help you identify a deadlock state.</p> http://stackoverflow.com/questions/1043775/what-free-tools-are-available-to-analyze-lock-contention-in-java/1043920#1043920 1 Answer by Don Branson for What free tools are available to analyze lock contention in java ? Don Branson 2009-06-25T13:26:53Z 2009-06-25T13:26:53Z <p>The JDK has some built-in support - under unix, kill -3 the process, under windows, ctrl-break. This will display a complete thread dump, followed by any deadlocks detected. Plus, in the thread dusmp you can see what threads own what locks, and compare them to each other.</p> http://stackoverflow.com/questions/1043775/what-free-tools-are-available-to-analyze-lock-contention-in-java/1043924#1043924 1 Answer by Scott Stanchfield for What free tools are available to analyze lock contention in java ? Scott Stanchfield 2009-06-25T13:27:13Z 2009-06-25T13:27:13Z <p>You can also view this in eclipse's debugger. In the Debug view, use the little down-triangle menu on the view toolbar to turn on "Java->Show Monitors".</p> <p>When you suspect a deadlock, pause the application (select the application in the debug view and press the pause button on the debug view toolbar) and if there's a deadlock, the blocking threads will turn red. If you expand those threads you can see the lock contention.</p> http://stackoverflow.com/questions/1043775/what-free-tools-are-available-to-analyze-lock-contention-in-java/1044027#1044027 1 Answer by kd304 for What free tools are available to analyze lock contention in java ? kd304 2009-06-25T13:45:14Z 2009-06-25T13:45:14Z <p>If you own the code, you could create/look for a Lock implementation which gathers contention statistics. If not, try the tools suggested in the other posts.</p>