Socket
Socket
Sign inDemoInstall

usage

Package Overview
Dependencies
1
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

usage


Version published
Weekly downloads
352
decreased by-3.3%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

node-usage

linux process usage lookup with nodejs

  • With node-usage we can lookup cpu and memory usage of any accessible process on the system.
  • This is 98% JavaScript and logic is based on procps

Example

Code

var usage = require('usage');

var pid = process.pid // you can use any valid PID instead
usage.lookup(pid, function(err, result) {
	
});

Result Object

{ 
	cpu: 10.6, //in percentage
	memory: 100065280 //in no of bytes
}

Motivation

  • Some NodeJS PAAS providers do not expose us an interface to monitor CPU and Memory usage of our apps.
  • They asks us to go for somewhere else for that which I don't want to go (or simply I cannot go)
  • So node-usage was born to tackle on this.

Keywords

FAQs

Last updated on 21 Feb 2013

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc