🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

redis-status

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

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
Source
npm
Version published
Weekly downloads
375
14.33%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

redis

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