javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, WebLogicMBean
JRockitRuntimeMBean
@Contract public interface JVMRuntimeMBean extends RuntimeMBean
Provides methods for retrieving information about the Java Virtual Machine (JVM) within with the current server instance is running. You cannot change the JVM's operating parameters while the JVM is active. Instead, use the startup options that are described in the JVM's documentation.
The WebLogic JVM contains only one of these Runtime MBeans:
If the JVM is an instance of a JRockit JDK, then the JVM contains
JRockitRuntime MBean
.
Otherwise, it contains the JVMRuntimeMBean
.
Modifier and Type | Method | Description |
---|---|---|
long |
getHeapFreeCurrent() |
The current amount of memory (in bytes) that is available in the
JVM heap.
|
int |
getHeapFreePercent() |
Percentage of the maximum memory that is free.
|
long |
getHeapSizeCurrent() |
The current size (in bytes) of the JVM heap.
|
long |
getHeapSizeMax() |
The maximum free memory configured for this JVM.
|
java.lang.String |
getJavaVendor() |
Returns the vendor of Java.
|
java.lang.String |
getJavaVendorVersion() |
Returns the vendor version of Java.
|
java.lang.String |
getJavaVersion() |
The Java version of the JVM.
|
java.lang.String |
getJavaVMVendor() |
Returns the vendor of the JVM.
|
java.lang.String |
getOSName() |
Returns the operating system on which the JVM is running.
|
java.lang.String |
getOSVersion() |
The version of the operating system on which the JVM is
running.
|
java.lang.String |
getThreadStackDump() |
JVM thread dump.
|
long |
getUptime() |
The number of milliseconds that the Virtual Machine has been
running.
|
void |
runGC() |
Starts garbage collection and finalization algorithms within the JVM.
|
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addPropertyChangeListener, removePropertyChangeListener
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
void runGC()
Starts garbage collection and finalization algorithms within the JVM.
long getHeapFreeCurrent()
The current amount of memory (in bytes) that is available in the JVM heap.
long getHeapSizeCurrent()
The current size (in bytes) of the JVM heap.
long getHeapSizeMax()
The maximum free memory configured for this JVM.
int getHeapFreePercent()
Percentage of the maximum memory that is free.
java.lang.String getJavaVersion()
The Java version of the JVM.
java.lang.String getJavaVendor()
Returns the vendor of Java.
The vendor of Java that this server runs.
java.lang.String getJavaVendorVersion()
Returns the vendor version of Java.
The vendor version of Java that this server runs.
java.lang.String getJavaVMVendor()
Returns the vendor of the JVM.
The vendor of the JVM that this server runs.
system property java.vm.vendor is returnedjava.lang.String getOSName()
Returns the operating system on which the JVM is running.
The operating system on which the JVM is running.
java.lang.String getOSVersion()
The version of the operating system on which the JVM is running.
java.lang.String getThreadStackDump()
JVM thread dump. Thread dump is available only on 1.5 VM
long getUptime()
The number of milliseconds that the Virtual Machine has been running.