-
1. Re: ThreadMXBean equivalent in the HTTP Management API
sachin_verma Jan 2, 2014 6:38 AM (in response to sachin_verma)Answering my own question since it may help others:
...gives me this:
{
"all-thread-ids" : [
295,
294,
],
"thread-contention-monitoring-supported" : true,
"thread-cpu-time-supported" : true,
"current-thread-cpu-time-supported" : true,
"object-monitor-usage-supported" : true,
"synchronizer-usage-supported" : true,
"thread-contention-monitoring-enabled" : false,
"thread-cpu-time-enabled" : true,
"thread-count" : 104,
"peak-thread-count" : 115,
"total-started-thread-count" : 290,
"daemon-thread-count" : 27,
"current-thread-cpu-time" : 15625000,
"current-thread-user-time" : 15625000
}
I am in need of the URL in order to obtain the Thread Info for each thread Id. Looking for the stack trace and CPU utilization per thread etc.