Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02

weblogic.management.runtime
Interface JVMRuntimeMBean

All Known Subinterfaces:
JRockitRuntimeMBean

public interface JVMRuntimeMBean

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:

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX" on http://www.oracle.com/technology/products/weblogic/index.html.


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.
 

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, 2011, 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
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02