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

@byu-oit/healthcheck

v0.1.5

Published

Standardized web server health checks

Downloads

386

Readme

@byu-oit/healthcheck

Standardized web server health checks

Motivation

The Health Check Response RFC Draft for HTTP APIs establishes a standard model for health check responses. Some implementations of the RFC Draft already exist in Node.js, however, none provide a standard interface for implementing and running executors. This library aims at standardizing how Node.js developers create and run health checks within their web servers.

Terminology

An overview of the terminology used in the code base. More specific RFC Draft information can be found at: https://inadarei.github.io/rfc-healthcheck.

health check: An REST response used to determine the overall health of a web server. It contains a map of component keys and component responses. In the RFC Draft, this is also known as the Checks Object. For additional information about the information that a health check response may contain, please see the published RFC Draft.

component key: a component has a name and a metric associated with it. The name and metric make up what is known as the component key and are formatted {name}:{metric}. The metric portion of the key is optional and if omitted, the name will be the key.

component or check: a section of the health check response containing information about the status of infrastructure that the web server depends on. For more information about what a component response contains, please refer to the published RFC Draft.

executor: a function used to establish the status of a component. The returned value must be in the shape of a component response object as defined per the RFC Draft.

Installation

npm install @byu-oit/healthcheck

Usage

Fastify

Health check executors and their dependencies can be imported from external files for better code organization. For demonstration purposes, I've included all the pieces in a comprehensive example below:

// server.ts
import {HealthCheck, Status, healthCheckFastify, noopExecutorFactory} from '@byu-oit/healthcheck'
import {FastifyRequest} from 'fastify'

const healthCheck = new HealthCheck<[FastifyRequest?]>({info: {version: '1', releaseId: '1.2.2'}})
    .add('noop', 'alive', noopExecutorFactory(Status.Text.PASS))

export const app = fastify()

app.register(healthCheckFastify, {
    logLevel: 'error',
    path: '/health/details',
    healthCheck
})

Rather than calling the add function, the above example could be changed to pass in the check options in the HealthCheck constructor like so:

import {FastifyRequest, Status} from 'fastify'
import {HealthCheck} from '@byu-oit/healthcheck'

const healthCheck: HealthCheck<[FastifyRequest?]> = new HealthCheck([
    {
        name: 'noop',
        metric: 'alive',
        executor: noopExecutorFactory(Status.Text.PASS)
    }
], {info: {version: '1', releaseId: '1.2.2'}})

export const app = fastify()

app.register(healthCheckFastify, {
    logLevel: 'error',
    path: '/health/details',
    healthCheck
})

The RFC Draft allows metadata on the top level of the health check response. More information about the top-level metadata can be found on the RFC Draft website. Here is an example of passing in all the allowed top-level metadata.

const healthCheck = new HealthCheck({
    info: {
        version: "1",
        releaseId: "1.2.2",
        notes: [""],
        output: "",
        serviceId: "f03e522f-1f44-4062-9b55-9587f91c9c41",
        description: "health of authz service",
        links: {
            about: "http://api.example.com/about/authz",
            'http://api.x.io/rel/thresholds': "http://api.x.io/rel/thresholds"
        }
    }
})

Plugins

Plugins or middleware are implementations of the RFC Draft for specific web server frameworks such as fastify. Plugins must be imported directly to not bloat the required dependencies to run this package. Additionally, all plugin dependencies must be installed.

Executor Factories

Executor Factories assist in replicating common patterns for checking system statuses. like plugins, must be imported directly and require all their dependencies (if any) to be installed.

| Executor | Import Path | Dependencies | Description | |----------------------|-------------------------------------------|----------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | noopExecutorFactory | @byu-oit/healthcheck/dist/executors/noop | None | An executor for testing purposes. | | fetchExecutorFactory | @byu-oit/healthcheck/dist/executors/fetch | npm install node-fetch@2 | Pass in node-fetch configurations to make HTTP requests. Status Codes 2xx and 3xx will set a status of 'pass' in the health check. Any other status codes will result in a status of 'fail'. |