mongo-heartbeat

2.0.1 • Public • Published

Ping mongodb every x seconds to prevent disconnections.

Installation

npm i mongo-heartbeat

Usage


var MongoHeartbeat = require('mongo-heartbeat');

var hb = MongoHeartbeat(db, {
  interval: 5000, //defaults to 5000 ms,
  timeout: 10000  //defaults to 10000 ms
  tolerance: 2    //defaults to 1 attempt
});

hb.on('error', function (err) {
  console.error('mongodb didnt respond the heartbeat message');
  process.nextTick(function () {
    process.exit(1);
  });
});

Debug

This module uses the debug module, use as follows:

DEBUG=mongo-heartbeat node server

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

Author

Auth0

License

This project is licensed under the MIT license. See the LICENSE file for more info.

Readme

Keywords

none

Package Sidebar

Install

npm i mongo-heartbeat

Weekly Downloads

5

Version

2.0.1

License

MIT

Unpacked Size

7.02 kB

Total Files

6

Last publish

Collaborators

  • cristiandouce
  • jfromaniello