Memory Monitoring and Management Platform MBeans: Difference between revisions
Jump to navigation
Jump to search
(Created page with " * [http://docs.oracle.com/javase/8/docs/api/java/lang/management/MemoryMXBean.html MemoryMXBean] * [http://docs.oracle.com/javase/8/docs/api/java/lang/management/MemoryManag...") |
No edit summary |
||
Line 1: | Line 1: | ||
=Internal= | |||
* [[JMX#Thread_Monitoring_and_Management|JMX]] | |||
Line 6: | Line 14: | ||
* [http://docs.oracle.com/javase/8/docs/api/java/lang/management/BufferPoolMXBean.html BufferPoolMXBean] | * [http://docs.oracle.com/javase/8/docs/api/java/lang/management/BufferPoolMXBean.html BufferPoolMXBean] | ||
* [http://docs.oracle.com/javase/8/docs/api/java/lang/management/GarbageCollectorMXBean.html GarbageCollectorMXBean] | * [http://docs.oracle.com/javase/8/docs/api/java/lang/management/GarbageCollectorMXBean.html GarbageCollectorMXBean] | ||
=External= | |||
* http://docs.oracle.com/javase/8/docs/api/java/lang/management/ThreadMXBean.html | |||
=Overview= | |||
Represents the management interface for the thread system of the Java virtual machine. It is accessible under the "java.lang:type=Threading" JMX ObjectName. | |||
=Metrics= | |||
==ThreadCount== | |||
The current number of live threads including both daemon and non-daemon threads. | |||
==DaemonThreadCount== | |||
==PeakThreadCount== | |||
==TotalStartedThreadCount== |
Revision as of 16:35, 9 May 2017
Internal
External
Overview
Represents the management interface for the thread system of the Java virtual machine. It is accessible under the "java.lang:type=Threading" JMX ObjectName.
Metrics
ThreadCount
The current number of live threads including both daemon and non-daemon threads.