1.1.0 • Published 10 years ago

mongotop v1.1.0

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

node-mongotop

Simple interface to mongotop for Node.js. Requires mongotop to be installed.

Usage

var mtop = require('mongotop')
  , stream = mtop({
	  	    ipv6: true, 
  		    locks: true, 
		    host: 'localhost', 
		    port: '27017', 
		    username: 'jim', 
		    password: 'password', 
		    sleep: 30
		  })

stream.on('data', function(data) {
  //Do things with the data
})

stream.on('error', function(error) {
  //Do things with the error
})

stream.pipe(someWriteableStream)

######Made with love by @taterbase