0.1.0 • Published 7 years ago

promon v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Promon

Collects information from /proc/pid/stat for linux/unix systems

npm install promon

API

  • getStats(callback) // returns all information associated to pid
  • getCPUPercentage() // returns CPU percentage used by the application
  • getMemory() // returns rss memory of the application in MB

Example

	var Stats = require('promon')
	var s = new Stats()
	s.getStats(function (err, data) {
		console.log(err, data)
	})
	var cpuPercent = s.getCPUPercentage()
	var memory = s.getMemory()

License

MIT