You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project works. But there's a much better project with a similar API.
It even does not need a binary addon (So, it's easy to use).
See pidusage: https://github.com/soyuka/pidusage
node-usage
process usage lookup with nodejs
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
Example
Code
varusage=require('usage');varpid=process.pid// you can use any valid PID insteadusage.lookup(pid,function(err,result){});
Result Object
{memory: 100065280,// in no of bytesmemoryInfo: {rss: 15966208,// resident size memory in bytesvsize: 3127906304// virtual memory size in bytes},cpu: 10.6// in percentage}
Average CPU usage vs Current CPU usage
This is only applicable for Linux
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.