You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP

redis-status

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redis-status

A node module that checks the health of a Redis server.

1.0.3
latest
Version published
Weekly downloads
402
38.62%
Maintainers
1
Weekly downloads
 
Created

redis-status

A node module that checks the health of a Redis server, suitable for use by a service's "health" route.

Installation

npm install redis-status --save

Usage

var express = require('express');
var router = express.Router();

// Construct a `RedisStatus` object configured to check the status of
// the Redis server named 'foo' at `redis//localhost:6379`.
var fooStatus = require('redis-status')({
  name: 'foo',
  port: 6379,
  host: 'localhost'
});

// If 'foo' is healthy, this route will print 'great'; otherwise it will print
// the reason that 'foo' is not healthy. A monitoring service like Webmon or
// Pingdom can raise non-'great' responses as alerts.
router.get('/health', function(req, res) {
  fooStatus.checkStatus(function(err) {
    res.send(err || 'great');
  });
});

Contributing

We welcome pull requests! Please lint your code.

Release History

  • 1.0.3 Connect to Redis only to check the status and then disconnect.
  • 1.0.2 Keep a persistent connection to Redis.
  • 1.0.1 Fix typo and clean up documentation.
  • 1.0.0 Initial release.

FAQs

Package last updated on 16 Mar 2015

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