Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
simple way to lookup linux process usage (with Nan for Node >= 0.11.x)
var usage = require('usage');
var pid = process.pid // you can use any valid PID instead
usage.lookup(pid, function(err, result) {
});
{
cpu: 10.6, //in percentage
memory: 100065280 //in no of bytes
}
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.
see following example to enable keepHistory flag
var pid = process.pid;
var options = { keepHistory: true }
usage.lookup(pid, options, function(err, result) {
});
you can clear history cache too
usage.clearHistory(pid); //clear history for the given pid
usage.clearHistory(); //clean history for all pids
FAQs
simple way to lookup linux process usage (with Nan for Node >= 0.11.x)
The npm package usage-nan receives a total of 2 weekly downloads. As such, usage-nan popularity was classified as not popular.
We found that usage-nan demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.