npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ot-hapi-service-status

v1.0.4

Published

Service Status plugin for Hapi

Downloads

18

Readme

ot-hapi-service-status

Service Status plugin for Hapi

Build Status Dependency Status NPM version

NPM

Overview

Defines /service-status endpoint:

GET /service-status
Host: yourhost.com

HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
cache-control: no-cache

{
  status: "ok",
  version: "1.0.164",
  sha: "2c199e4e45ed09a84356412243e676998986b0e1",
  env: "prod",
  monitors: [
    {
      status: "healthy",
      name: "your custom monitor"
    }
  ]
}

Usage

$ npm i ot-hapi-service-status --save
var server = new (require('hapi').Server)();
server.connection({ port: 3000 });

server.register([
    {
        register: require('ot-hapi-service-status'),
        options: {
            metadata: {
                version: require('./package.json').version,
                env: process.env.NODE_ENV || 'local'
            },
            monitors: [
                function(req, reply, done) {
                    done(null, {
                        status: 'healthy', // status of 'healty' indicates monitor is healthy, any other value indicates monitor failure and will cause the top-level status to change to 'faulting'
                        name: 'monitor 1', // optional name, useful for differentiating between monitors
                        myField1: true,    // arbitraty fields, usefull for surfacing
                        myField2: false    // additional diagnostic information
                    });
                },
                function(req, reply, done) {
                    done(null, {
                        status: 'cannot connect to internal service',
                        name: 'monitor 2',
                        err: {}
                    });
                }
            ]        
        }
    }
], function(err) {
    if (err) {
        console.error('Failed to load plugin:', err);
    }

    server.start();
});

Configuration

  • metadata - (optional) a set of additional fields to inject into each service-status response
  • monitors - a list of monitoring functions, with the following signature function(req, reply, done)
    • req - Hapi request object
    • reply - Hapi reply object
    • done - callback, with the following signature function(err, data)

Release History

  • v1.0.4 (2016-04-07)
    • updated dependencies
  • v1.0.3 (2015-11-20)
    • updated dependencies
  • v1.0.2 (2015-07-13)
    • updated dependencies
  • v1.0.1 (2015-06-06)
    • housekeeping
  • v1.0.0 (2015-05-13)
    • housekeeping
  • v0.1.4 (2015-05-12)
    • improved compatibility with ot-hapi-request-metrics package
  • v0.1.3 (2015-05-12)
    • updated dependencies
  • v0.1.2 (2015-05-06)
    • updated dependencies
  • v0.1.1 (2015-04-27)
    • updated dependencies
  • v0.1.0 (2015-03-31)
    • initial release