Good day! I have a trouble with obtaining memory usage of java thread. My research brought me to ThreadMxBean library. According to the javadoc of ThreadMXBean#setThreadAllocatedMemoryEnabled, there should be a method getThreadAllocatedBytes allowing to get memory of thread. However, I could not find this method of class, whereas other methods described in mentioned docs exist.
Example getCurrentThreadCpuTime() and isThreadCpuTimeEnabled() shown in my code.
import java.lang.management.ManagementFactory;
import java.lang.management.ThreadMXBean;
import javax.management.AttributeNotFoundException;
import javax.management.InstanceNotFoundException;
import javax.management.MBeanException;
import javax.management.MalformedObjectNameException;
import javax.management.ReflectionException;
class TwoThreadsTest {
public static void main (String[] args) throws Exception {
new Coding("Jamaica").start();
ThreadMXBean threadBean = ManagementFactory.getThreadMXBean();
long b = threadBean.getCurrentThreadCpuTime();
boolean bool= threadBean.isThreadCpuTimeEnabled();
System.out.println(bool);
}
}
