Uses of Interface
java.lang.management.PlatformManagedObject
-
Packages that use PlatformManagedObject Package Description com.ibm.lang.management OpenJ9 management extensions to java.lang.management.com.ibm.virtualization.management OpenJ9 management extensions relating to execution within a Guest (Virtual Machine (VM)/Logical Partition (LPAR)) on top of a Hypervisor.com.sun.management Extensions ofjava.lang.management
.java.lang.management Provides the management interfaces for monitoring and management of the Java virtual machine and other components in the Java runtime.openj9.lang.management OpenJ9 management extensions to java.lang.management. -
-
Uses of PlatformManagedObject in com.ibm.lang.management
Subinterfaces of PlatformManagedObject in com.ibm.lang.management Modifier and Type Interface Description interface
GarbageCollectorMXBean
The OpenJ9 extension interface for managing and monitoring the virtual machine's garbage collection functionality.interface
JvmCpuMonitorMXBean
This interface provides APIs to obtain JVM CPU usage information in terms of thread categories.interface
MemoryMXBean
The OpenJ9 extension interface for monitoring the virtual machine's memory management system.interface
MemoryPoolMXBean
The OpenJ9 interface for managing and monitoring the virtual machine's memory pools.interface
OperatingSystemMXBean
OpenJ9 platform management extension interface for the Operating System on which the Java Virtual Machine is running.interface
RuntimeMXBean
The OpenJ9 extension interface for the runtime system of the virtual machine.interface
ThreadMXBean
The OpenJ9 extension interface toThreadMXBean
.interface
UnixOperatingSystemMXBean
Interface provides platform-specific management utilities on Unix and Unix-like operating systems. -
Uses of PlatformManagedObject in com.ibm.virtualization.management
Subinterfaces of PlatformManagedObject in com.ibm.virtualization.management Modifier and Type Interface Description interface
GuestOSMXBean
This interface provides Processor and Memory usage statistics of the Guest (Virtual Machine(VM)/Logical Partition(LPAR)) as seen by the Hypervisor Host.interface
HypervisorMXBean
This interface provides information on whether the current Operating System is running directly on physical hardware or running as a Guest (Virtual Machine (VM)/Logical Partition (LPAR)) on top of a Hypervisor. -
Uses of PlatformManagedObject in com.sun.management
Subinterfaces of PlatformManagedObject in com.sun.management Modifier and Type Interface Description interface
GarbageCollectorMXBean
Platform-specific management interface for a garbage collector which performs collections in cycles.interface
HotSpotDiagnosticMXBean
Stub to compile OpenJDK diagnostic management, seeopenj9.lang.management
andcom.ibm.lang.management
packages instead.interface
OperatingSystemMXBean
Platform-specific management interface for the operating system on which the Java virtual machine is running.interface
ThreadMXBean
Platform-specific management interface for the thread system of the Java virtual machine.interface
UnixOperatingSystemMXBean
Platform-specific management interface for the Unix operating system on which the Java virtual machine is running. -
Uses of PlatformManagedObject in java.lang.management
Subinterfaces of PlatformManagedObject in java.lang.management Modifier and Type Interface Description interface
BufferPoolMXBean
The interface for the management buffer pool.interface
ClassLoadingMXBean
The management and monitoring interface for the virtual machine's class loading functionality.interface
CompilationMXBean
The management and monitoring interface for the virtual machine's compilation functionality.interface
GarbageCollectorMXBean
The interface for managing and monitoring the virtual machine's garbage collection functionality.interface
MemoryManagerMXBean
The management and monitoring interface for a virtual machine memory manager.interface
MemoryMXBean
The management and monitoring interface for a virtual machine's memory system.interface
MemoryPoolMXBean
The management and monitoring interface for a virtual machine memory pool.interface
OperatingSystemMXBean
The management and monitoring interface for the operating system where the virtual machine is running.interface
PlatformLoggingMXBean
The management interface for the logging facility.interface
RuntimeMXBean
The management and monitoring interface for the runtime system of the virtual machine.interface
ThreadMXBean
The management and monitoring interface for the threading system of the virtual machine.Methods in java.lang.management with type parameters of type PlatformManagedObject Modifier and Type Method Description static <T extends PlatformManagedObject>
TManagementFactory. getPlatformMXBean(Class<T> mxbeanInterface)
Returns the platform MXBean implementing the givenmxbeanInterface
which is specified to have one single instance in the Java virtual machine.static <T extends PlatformManagedObject>
TManagementFactory. getPlatformMXBean(MBeanServerConnection connection, Class<T> mxbeanInterface)
Returns the platform MXBean proxy formxbeanInterface
which is specified to have one single instance in a Java virtual machine and the proxy will forward the method calls through the givenMBeanServerConnection
.static <T extends PlatformManagedObject>
List<T>ManagementFactory. getPlatformMXBeans(Class<T> mxbeanInterface)
Returns the list of platform MXBeans implementing the givenmxbeanInterface
in the Java virtual machine.static <T extends PlatformManagedObject>
List<T>ManagementFactory. getPlatformMXBeans(MBeanServerConnection connection, Class<T> mxbeanInterface)
Returns the list of the platform MXBean proxies for forwarding the method calls of themxbeanInterface
through the givenMBeanServerConnection
.Methods in java.lang.management that return types with arguments of type PlatformManagedObject Modifier and Type Method Description static Set<Class<? extends PlatformManagedObject>>
ManagementFactory. getPlatformManagementInterfaces()
Returns the set ofClass
objects, subinterface ofPlatformManagedObject
, representing all management interfaces for monitoring and managing the Java platform. -
Uses of PlatformManagedObject in openj9.lang.management
Subinterfaces of PlatformManagedObject in openj9.lang.management Modifier and Type Interface Description interface
OpenJ9DiagnosticsMXBean
This interface provides APIs to dynamically trigger dump agents.
-