New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mongodb-serverstatus

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-serverstatus

Library to get MongoDB serverStatus informations

1.0.3
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Mongo serverStatus

Node.js library to get MongoDB serverStatus informations.

Usage exemple

Install with npm install mongodb-serverstatus and you're ready to go!

const serverStatus = require('mongodb-serverstatus');

var config = {
    dbPath: 'mongodb://localhost/mydatabase',
    dbOptions: {
        user: '',
        pass: '',
        server: {
            ssl: false,
            sslValidate: false
        },
    }
};

serverStatus.init(config);
serverStatus.memory((data) => {
    console.log(data);
});

Functions

  • usedConnections – {number}: percentage of open connections
  • memory – {object}: RAM and virtual memory used in MB
  • flushAvgTime – {number}: the average time in milliseconds for each flush to disk
  • lastFlushTime – {number}: time in milliseconds for the last flush
  • rawData – {object}: all mongo serverStatus infos
  • status – {bool}: request status
  • storageEngine – {string}: storage engine used
  • uptime – {int}: the number of seconds that the current MongoDB process has been active

Keywords

monitoring

FAQs

Package last updated on 04 Jul 2016

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