OSのCPU使用率をJavaコードから計算します。
unix
コマンドで見つけるにはいくつかの方法があります[例: mpstat
、_/proc/stat
_ etc ...]を使用し、Runtime.getRuntime().exec
から使用しますしかし、システムコールは使いたくありません。
ManagementFactory.getOperatingSystemMXBean()
を試しました
_OperatingSystemMXBean osBean =
(OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
System.out.println(osBean.getSystemLoadAverage());
_
ただし、CPU負荷は与えられますが、CPU使用量は与えられません。とにかく使用率を見つける方法はありますか?
Java 7では、次のように取得できます。
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);
}