vote up 8 vote down star

Is there a way to get the current cpu load under Java without using the JNI?

flag

5 Answers

vote up 13 vote down check

Use the ManagementFactory to get an OperatingSystemMXBean and call getSystemLoadAverage() on it.

link|flag
Weird. The getSystemLoadAverage link doesn't go to the anchor, but when I went in to edit it, it did work. Maybe the system now auto-replaces () with %28%29, even in anchors. – mmyers Mar 11 at 14:28
Well, when I edited it, I got it wrong the first time. Maybe we had a human race condition. Having the link seemed to make the answer even more perfect, though. – Bob Cross Mar 11 at 14:35
What I meant was that the link still shows as #getSystemLoadAverage%28%29. The Runtime.exec() link in Bombe's answer below has the same issue, and editing it shows exec(java.lang.String) instead of exec%28java.lang.String%29. Do either of those work for anyone else? – mmyers Mar 11 at 14:50
I don't think I see what you see: I'm running Firefox on Fedora 9 and I see this for the getSystemLoadAverage() link: java.sun.com/javase/6/…() – Bob Cross Mar 11 at 14:54
Must be an IE7 thing then. (I wish I could use Firefox here.) – mmyers Mar 11 at 15:44
show 1 more comment
vote up 1 vote down

Under Linux you could use Runtime.exec() to execute “uptime” and evaluate the output. I don’t there’s a better way under Linux, and I don’t think there’s an equally “convenient” way under Windows.

link|flag
vote up 2 vote down

On linux you could just read the file /proc/loadavg, where the first three values represent the load averages. For Windows you probably have to stick to JNI.

link|flag
vote up 2 vote down

This does involve JNI but there is a GPL library from Hyperic called Sigar that provides this information for all the major platforms, as well as a bunch of other OS-dependent stats like disk usage. It's worked great for us.

link|flag
vote up 0 vote down

If you're using the JRockit JVM you could use JMAPI. It works for JDK 1.4, 1.5 and 1.6.

System.out.println("Total CPU-usage:" + JVMFactory.getJVM().getMachine().getCPULoad());

System.out.println("Total JVM-load :" + JVMFactory.getJVM().getJVMLoad());

for(Iterator it = JVMFactory.getJVM().getMachine().getCPUs().iterator(); it.hasNext();)
{
   CPU cpu = (CPU)it.next();
   System.out.println("CPU Description: " + cpu.getDescription());
   System.out.println("CPU Clock Frequency: " + cpu.getClockFrequency());
   System.out.println("CPU Load: " + cpu.getLoad());
   System.out.println();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.