simple way to lookup linux process usage
npm install usage* Simple interface to lookup cpu and memory usage of any accessible process on the system.
* Works on OSX, Linux, SmartOS and Solaris
* Tested on Heroku, Nodejitsu and Modulus
var pid = process.pid // you can use any valid PID instead
usage.lookup(pid, function(err, result) {
});
~~~
By default CPU Percentage provided is an average from the starting time of the process. It does not correctly reflect the current CPU usage. (this is also a problem with linux ps utility)
But If you call usage.lookup() continuously for a given pid, you can turn on keepHistory flag and you'll get the CPU usage since last time you track the usage. This reflects the current CPU usage.
see following example to enable keepHistory flag
~~~js
var pid = process.pid;
var options = { keepHistory: true }
usage.lookup(pid, options, function(err, result) {
});
~~~
you can clear history cache too
~~~js
usage.clearHistory(pid); //clear history for the given pid
usage.clearHistory(); //clean history for all pids
~~~