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

@kth/monitor

v4.3.1

Published

Helper for monitor page checks.

Downloads

5,178

Readme

@kth/monitor Continous Integration

Helper utilities for KTH/node-projects

Changes in v4

There are some major changes, but hopefully nothing that should break current implementations.

Typescript

Package is now in typescript. Usage in vanilla-js-apps should work as before.

3 levels of monitoring

Different level of dependency check will now be performed depending on the "probe"-parameter supplied to a request, like /_monitor?probe=readyness

  • liveness Checks only the application, no dependencies.

  • readyness Checks the application, and the system that are exlusive for the application, redis, sqldb, mongodb and custom

  • full Checks the application and all dependencies. Calls to other api's are done to their liveness probe, to prevent circullar calls.

If no probe param is supplied, liveness check is performed.

Unused and superfluous systems removed.

Some systems are removed, to simplify the package.

  • local This was checking a local page in web-apps, which had lot of unintended external dependencies, or the /swagger endpoint in api's, which is not critical for operation. In most cases, if the monitor is able to respond, then the app is alive.

  • agenda Agenda configuration is run at startup, and should not change during runtime. It is better checked in the /_status andpoint. Issues with mongodb can cause agenda to fail, but that is checked in other places.

  • ldap This does not seem to be used anywhere anymore.

  • custom function Custom getStatus function. Had a low usage-rate and complex implementation.

If any deprecated systems remain in the config, the monitor will still work, but warnings will be logged. If you use typescript the above systems will not be accepted.

If you feel that something you really need is removed, please open a issue in this repo, or contact the webb-team.

Required-flag

The required-option on subsystems still exists, but currently has no effect on the monitor result.

Usage

Usage example:

import { monitorRequest } from '@kth/monitor'

async function getMonitor(req, res) {
  try {
    await monitorRequest(req, res, [
      {
        key: 'mongodb',
        db,
      },
      // Add systems to check here
    ])
  } catch (error) {
    log.error(`Monitor failed`, error)
    res.status(500).end()
  }
}

monitorRequest

monitorRequest = async (req: Request, res: Response, monitoredSystems: MonitoredSystem[])

A helper method that handles an express request to the monitor endpoint.

Name

All checks can take an optional name parameter, otherwise key is used as displayname.

System checks

MongoDb
Checked on readyness probes

{
  key: 'mongodb',
  db: (instance of @kth/mongo)
}

Redis
Checked on readyness probes

{
  key: 'redis',
  redis: (instance of @kth/redis)
  options: (options for redis)
}

SQLDb
Checked on readyness probes

{
  key: 'sqldb',
  db: {
    connect: // async function implementing database connection
  }
}

Custom
Checked on readyness probes

With boolean

{
  key: 'custom',
  customCheck: {
    isOk: boolean,
    message: string, // optional message
  }
}

With async function

{
  key: 'custom',
  customLookup: {
    lookupFn: // async function returning a boolean
  }
}

KTH Node-api
Checked on full probes

const api = require('../api') //'@kth/api-call' intances

{
  key: apiName,
  endpoint: api[apiName],
}

The _monitor request

Http params

The monitor checks the "probe" param to determine the level of checks to perform.

Response type

The response is by default in plain text.
Use header 'accept: application/json' for Json-response.

Timeout

Checks on sub-systems has a timeout of 5 seconds.

Result

Each system result has an optional "message" field, used when whings gone wrong. This is not structured in a specific way, so do not parse this with code.

Examples

A simple request

curl '/_monitor?probe=readyness'
APPLICATION_STATUS: OK
mongodb - OK
mongodb - OK

A failing JSON request

curl --request GET \
  --url '/_monitor?probe=full' \
  --header 'accept: application/json'
{
  "message": "ERROR",
  "subSystems": [
    {
      "key": "nodeApi",
      "result": {
        "status": false,
        "message": "FetchError: request to /api/node/_monitor failed, reason: connect ECONNREFUSED"
      }
    },
    {
      "key": "redis",
      "result": {
        "status": false,
        "message": "system timed out"
      }
    }
  ]
}