I have a running JVM with two threads. Is it possible to see these running threads on my Linux OS with ps -axl ? I am trying to find out what priority the OS is giving to my threads. More info about this other issue here.
|
|
|
Use
for finding your java process. Sample Output:
Then use
(6172 is id of your process) to get stack of threads inside jvm. Thread priority could be found from it. Sample output:
Enjoy! EDIT: If application running under different user than yourself (typical case on production and other non-local environments) then jps/jstack should be run via sudo. Examples:
|
||||
|
|
|
On Linux, the Sun/Oracle JVM implements Java threads using native Linux threads, so yes, you can see them in "ps" output. Any thread belonging to a Linux threads do have IDs, but they're just numbers, and "ps axl" doesn't show them. "ps -eLf" does, in the "LWP" column. ("LWP" is short for "lightweight process", which is another name for a thread.) Within Java, the |
||||
|
The See:
Apparently I've got a lot of threaded processes running right now. |
|||
|
|
|
If you have JDK installed, you can use a tool called jvisualvm to see the threads (and do many others operations relavant to a java process - see memory, quick check on objects etc) |
|||
|
|
You can make a JNI jump into native code to obtain the native TID associated with the particular Java thread. Then use OS commands or procfs as others have suggested or even better send the particulars of the thread back up to Java. Example: native code
|
|||||
|
|
|
|||
|
|