Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hapi-lbstatus

Package Overview
Dependencies
Maintainers
6
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hapi-lbstatus

lbstatus plugin for hapi

  • 3.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
6
Weekly downloads
 
Created
Source

#Hapi lbstatus Build Status NPM version Dependencies

Shared code for the _lbstatus endpoint. Essentially a poor-man's service discovery, will be used until the front-door service is ready.

Reads the specified file and looks for the value 'ON' or 'OFF' and returns ON or OFF from the endpoint.

If the file is missing, or empty, or an exception occurs, then default value is OFF.

Also performs a liveness check by injecting a request to a specified endpoint (using server.inject). If the response is an error (or times out) it returns "OFF".

Installation:

npm install hapi-lbsstatus

Usage:

var server = hapi.createServer();

server.pack.require("hapi-lbstatus",
  {
    file: '/etc/lbstatus/myappname',
    liveness: '/my/api/123',
    headers: {
    // optional headers to apply when making the liveness check
      'accept-language': 'en-US'
    },
    on: "MYAPP_ON", // override the default return value of 'ON'
    off: "MYAPP_OFF" // override the default return value of 'OFF'
  },
  function (err){
    if(err){
      throw err;
    }
  }
);

// also exposes the lbstatus function

server.plugins['hapi-lbstatus'].lbstatus(function(on){
  // returns true if ON, false if OFF
});

Response Codes:

  • ON: 200
  • OFF: 503

Notes:

  • Supports pack servers as well as single instances
  • Supports hapi v5+

Keywords

FAQs

Package last updated on 19 May 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc