Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.management.runtime
Interface JVMRuntimeMBean

All Superinterfaces:
DynamicMBean, MBeanRegistration, NotificationBroadcaster, RuntimeMBean, WebLogicMBean
All Known Subinterfaces:
JRockitRuntimeMBean

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:


Method Summary
 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.
 String getJavaVendor()
          Returns the vendor of Java.
 String getJavaVersion()
          The Java version of the JVM.
 String getJavaVMVendor()
          Returns the vendor of the JVM.
 String getOSName()
          Returns the operating system on which the JVM is running.
 String getOSVersion()
          The version of the operating system on which the JVM is running.
 String getThreadStackDump()
          JVM thread dump.
 long getUptime()
          The number of milliseconds that the Virtual Machine has been running.
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 

Method Detail

getHeapFreeCurrent

long getHeapFreeCurrent()

The current amount of memory (in bytes) that is available in the JVM heap.

Returns:
The heapFreeCurrent value

getHeapSizeCurrent

long getHeapSizeCurrent()

The current size (in bytes) of the JVM heap.

Returns:
The heapSizeCurrent value

getHeapSizeMax

long getHeapSizeMax()

The maximum free memory configured for this JVM.


getHeapFreePercent

int getHeapFreePercent()

Percentage of the maximum memory that is free.


getJavaVersion

String getJavaVersion()

The Java version of the JVM.

Returns:
The javaVersion value

getJavaVendor

String getJavaVendor()
Returns the vendor of Java.

The vendor of Java that this server runs.

Returns:
The javaVendor value

getJavaVMVendor

String getJavaVMVendor()
Returns the vendor of the JVM.

The vendor of the JVM that this server runs.

system property java.vm.vendor is returned


getOSName

String getOSName()
Returns the operating system on which the JVM is running.

The operating system on which the JVM is running.

Returns:
The oSName value

getOSVersion

String getOSVersion()

The version of the operating system on which the JVM is running.

Returns:
The oSVersion value

getThreadStackDump

String getThreadStackDump()

JVM thread dump. Thread dump is available only on 1.5 VM

Returns:
Formatted thread dump string

getUptime

long getUptime()

The number of milliseconds that the Virtual Machine has been running.

Returns:
The uptime (in milliseconds) of the VM.

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02