health-check-redis

0.0.9 • Public • Published

Health Check Redis

CI

Circle CI

Install

$ npm install health-check-redis

Usage

var healthCheckRedis = require('health-check-redis');

healthCheckRedis.do([
{
  host: '127.0.0.1',
  port: 6379
},
{
  host: 'wrong host',
  port: 6379
}])
 .then(function(result){
    console.log(result); 
    
    /* 
      { 
        health: false,
        success: 1,
        error: 1,
        details: 
          [ 
            { 
              name: '127.0.0.1:6379', 
              health: true, 
              message: '' 
            },
            { 
              name: 'wrong host:6379',
              health: false,
              message: 'Redis connection to wrong host:6379 failed - getaddrinfo ENOTFOUND wrong host wrong host:6379' 
            } 
          ] 
      }
    */
 })
 .catch(function(error){
    console.log(error); 
 });

/health-check-redis/

    Package Sidebar

    Install

    npm i health-check-redis

    Weekly Downloads

    79

    Version

    0.0.9

    License

    MIT

    Last publish

    Collaborators

    • lucastinik