How to track system load average using java.The result should be same the load average is returning form the 'uptime' command in Linux.
Sample uptime command result is,
root@jamsheer:~# uptime
16:01:06 up 6:58, 2 users, load average: 1.24, 1.25, 1.33
I need to get same load average through programmatically and should be executable at all platforms, Any suggestion, please.
Thanks in advance.