3.0.0 • Published 10 years ago

hapi-heartbeat v3.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

#Hapi hearbeat Build Status NPM version Dependencies

Shared code for the heartbeat endpoint.

Installation:

npm install hapi-heartbeat

Usage:

var server = hapi.createServer();

server.pack.require("hapi-heartbeat",
  {
    liveness: '/my/api/123',
    route: '/heartbeat' (optional: default to /heartbeat)
    headers: {
    // optional headers to apply when making the liveness check
      'accept-language': 'en-US'
    },
  },
  function (err){
    if(err){
      throw err;
    }
  }
);

Response Codes:

  • 200
  • 503

Notes:

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

10 years ago

2.0.0

10 years ago

1.0.0

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago