Utility to view threads in a Java process - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T22:17:09Z http://stackoverflow.com/feeds/question/1110664 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1110664/utility-to-view-threads-in-a-java-process 4 Utility to view threads in a Java process Jeremy http://stackoverflow.com/users/9266 2009-07-10T16:45:46Z 2009-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#1110690 2 Answer by seth for Utility to view threads in a Java process seth http://stackoverflow.com/users/8590 2009-07-10T16:50:07Z 2009-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#1110701 2 Answer by mattwright for Utility to view threads in a Java process mattwright http://stackoverflow.com/users/33106 2009-07-10T16:52:07Z 2009-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#1110742 3 Answer by Clint for Utility to view threads in a Java process Clint http://stackoverflow.com/users/64044 2009-07-10T17:02:28Z 2009-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>