Utility to view threads in a Java process - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T22:17:09Zhttp://stackoverflow.com/feeds/question/1110664http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1110664/utility-to-view-threads-in-a-java-process4Utility to view threads in a Java processJeremyhttp://stackoverflow.com/users/92662009-07-10T16:45:46Z2009-07-10T17:02:28Z
<p>I've got a java application on a windows machine which pins the CPU from time to time. Would like to run a utility to get an idea of how many threads etc that application is creating. Is there such a utility?</p>
http://stackoverflow.com/questions/1110664/utility-to-view-threads-in-a-java-process/1110690#11106902Answer by seth for Utility to view threads in a Java processsethhttp://stackoverflow.com/users/85902009-07-10T16:50:07Z2009-07-10T16:50:07Z<p>I've always been partial to <a href="http://www.yourkit.com/" rel="nofollow">YourKit</a>. </p>
<p>There are lots of others though, both open source and commercial. If you do a google search for "<a href="http://www.google.com/search?q=java+profilers" rel="nofollow">java profilers</a>" you should be able to find one to your liking.</p>
http://stackoverflow.com/questions/1110664/utility-to-view-threads-in-a-java-process/1110701#11107012Answer by mattwright for Utility to view threads in a Java processmattwrighthttp://stackoverflow.com/users/331062009-07-10T16:52:07Z2009-07-10T16:52:07Z<p>You could try <a href="http://java.sun.com/javase/6/docs/technotes/tools/share/jstack.html" rel="nofollow">jstack</a>, should be part of the jdk.</p>
http://stackoverflow.com/questions/1110664/utility-to-view-threads-in-a-java-process/1110742#11107423Answer by Clint for Utility to view threads in a Java processClinthttp://stackoverflow.com/users/640442009-07-10T17:02:28Z2009-07-10T17:02:28Z<p><a href="http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html" rel="nofollow">jconsole</a> is included with the jdk and includes thread/memory/cpu monitoring</p>