G.S
G.S

Reputation: 10871

How to get percentage of CPU usage of OS from java

I want to calculate percentage of CPU usage of OS from java code.

  1. There are several ways to find it by unix command [e.g. using mpstat, /proc/stat etc...] and use it from Runtime.getRuntime().exec

But I don't want to use the system calls.

I tried ManagementFactory.getOperatingSystemMXBean()

OperatingSystemMXBean osBean =
         (OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
System.out.println(osBean.getSystemLoadAverage());

But it gives the cpu load but not the cpu usage. Is there anyway to find the usage percentage?

Upvotes: 29

Views: 60329

Answers (2)

isapir
isapir

Reputation: 23493

In Java 7 you can get it like so:

public static double getProcessCpuLoad() throws Exception {

    MBeanServer mbs    = ManagementFactory.getPlatformMBeanServer();
    ObjectName name    = ObjectName.getInstance("java.lang:type=OperatingSystem");
    AttributeList list = mbs.getAttributes(name, new String[]{ "ProcessCpuLoad" });

    if (list.isEmpty())     return Double.NaN;

    Attribute att = (Attribute)list.get(0);
    Double value  = (Double)att.getValue();

    // usually takes a couple of seconds before we get real values
    if (value == -1.0)      return Double.NaN;
    // returns a percentage value with 1 decimal point precision
    return ((int)(value * 1000) / 10.0);
}

Upvotes: 45

Julien
Julien

Reputation: 2246

You can use the SIGAR API. It is cross platform ( but I've only use it on Windows).

The Javadoc is available here and the binaries are here

It is licensed under the terms of the Apache 2.0 license.

Upvotes: 0

Related Questions