OperatingSystemMXBean Platform MBean

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal


!!!Java Operating System Monitoring MBeans

!!!External

!!!java.lang.management.OperatingSystemMXBean

Operating system on which the Java virtual machine is running. The ObjectName registered under is "java.lang:type=OperatingSystem".

!!!Interesting Parameters

!!SystemLoadAverage

{{{

   double getSystemLoadAverage();

}}}

Returns the system load average for the last minute. The system load average is the sum of the number of runnable entities queued to the available processors and the number of runnable entities running on the available processors averaged over a period of time. The way in which the load average is calculated is operating system specific but is typically a damped time-dependent average.

If the load average is not available, a negative value is returned.

This method is designed to provide a hint about the system load and may be queried frequently. The load average may be unavailable on some platform where it is expensive to implement this method.

!!!Example

{{{ ManagementFactory.getOperatingSystemMXBean(); }}}


!!!Java 7 com.sun.management.OperatingSystemMXBean

To get it:

{{{

   ManagementFactory.getPlatformMXBean(com.sun.management.OperatingSystemMXBean.class);

}}}

Provides access to:

{{{

   double getSystemCpuLoad();

}}}

Returns the load as a double value in the [[0.0,1.0] interval, with 0.0 representing no load to 1.0 representing 100% CPU load for the whole system.


{{{

   double getProcessCpuLoad();

}}}

Returns the load as a double value in the [[0.0,1.0] interval, with 0.0 representing no load to 1.0 representing 100% CPU load for the current JVM process.

{{{

   long getProcessCpuTime();

}}}


{{{

   long getCommittedVirtualMemorySize();
   long getTotalSwapSpaceSize();
   long getFreeSwapSpaceSize();
   long getFreePhysicalMemorySize();
   long getTotalPhysicalMemorySize();

}}}


!!!To Investigate

{{{ public interface UnixOperatingSystemMXBean extends com.sun.management.OperatingSystemMXBean {

   long getOpenFileDescriptorCount();
   long getMaxFileDescriptorCount();

} }}}