GithubHelp home page GithubHelp logo

bw-bmbarga / bw-monitoring Goto Github PK

View Code? Open in Web Editor NEW

This project forked from brandwatchltd/bw-monitoring

0.0 1.0 0.0 114 KB

Express JS middleware to help push metrics and checks to Prometheus

JavaScript 100.00%

bw-monitoring's Introduction

bw-monitoring

NPM version Build Status Dependency Status

bw-monitoring is Express middleware that exposes a collection of standardised endpoints for monitoring infrastructure (e.g. Prometheus) to consume.

npm install --save bw-monitoring

bw-monitoring exports a function getMiddleware which returns an express middleware to pass to expressApp.use. This adds standard routes /healthz, /metricz, /checkz.

var monitoring = require('bw-monitoring');
expressApp.use(monitoring.getMiddleware());

/checkz

By default /checkz returns a 404 status code. It can be configured to perform arbitrary checks of application dependencies using bwMonitoring.addCheck().

monitoring.addCheck

var postgresCheck = {
  name: 'postgres',
  check: (ok, warning, critical, unknown) => {
    pgConnection.query.raw('SELECT version();', [])
      .then(ok)
      .catch(critical);
  }
}
monitoring.addCheck(postgresCheck);

With this check added the endpoint will return 200 with a body showing the result of any checks in prometheus compatible data format. E.g...

postgres 0

/livez

The /livez endpoint is the same as /checkz, and checks are added the same way (via bwMonitoring.addCheck(). However if any check fails it will return a 500 status code. The content of the body will also be only the failed check

/healthz

By default /healthz returns a 200 status code. This can be used as a sensible default in a Kubernetes readinessProbe, and all it does is check that the express server is serving correctly. It checks no upstream dependencies for health, although it can be configured to do this using addReadinessCheck.

monitoring.addReadinessCheck

To add specific checks to a readinessProbe (e.g. can connect to postgres) use the addReadinessCheck method. addReadinessCheck takes the exact same style of check as addCheck, meaning we can re-use the postgres check from above if desirable. E.g...

monitoring.addReadinessCheck(postgresCheck);

NB: Do not configure explicit readiness checks unless you have a tier infront of your application that can serve appropriate error pages (e.g nginx). If all you have is dumb TCP/HTTP load-balancing, then keep forwarding requests to the application so it can deal with errors itself when an upstream dependency is failing.

/metricz

By default /metricz returns a 404 status code.

monitoring.addMetrics

It can be configured with a function to query for Prometheus style metrics and will expose them in a compatible data format.

var prometheus = require('prom-client');
var c = new Counter('my_counter');
setTimeout(c.inc, 200);
monitoring.addMetrics(() => prometheus.register.metrics());

bw-monitoring's People

Contributors

ahume avatar spmason avatar dependabot[bot] avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.