Is there a way to get the current cpu load under Java without using the JNI?
|
|
Use the |
||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
If you're using the JRockit JVM you could use JMAPI. It works for JDK 1.4, 1.5 and 1.6.
|
|||
|
|
