user705414
user705414

Reputation: 21200

Which tool can show various threads and stack info in the already running java code?

I would like to know tools to check thread/stack information in both windows platform, Linux platform and Mac platform which jvm is running.

Upvotes: 1

Views: 55

Answers (2)

GETah
GETah

Reputation: 21409

JConsole might be what you are looking for. Combine it with TopThreads to get more features. Here is a small tutorial on how to use TopThreads with JConsole

Upvotes: 2

João Silva
João Silva

Reputation: 91299

jvisualvm, which comes bundled with JDK 6 release 7.

Upvotes: 5

Related Questions