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

@snapshot-labs/snapshot-metrics

v1.4.1

Published

`snapshot-metrics` is a npm package that handle the metrics export for Snapshot backend projects. It simplifies and standardizes the process of setting up the metrics endpoint for any snapshot services.

Downloads

1,453

Readme

Snapshot-metrics

snapshot-metrics is a npm package that handle the metrics export for Snapshot backend projects. It simplifies and standardizes the process of setting up the metrics endpoint for any snapshot services.

Pre-requisites

  • Express
  • Node >= 16

Install

Add it in your project with

yarn add @snapshot-labs/snapshot-metrics

Usage

Import it in your app after creating the express instance

import express from 'express';
import initMetrics from '@snapshot-labs/metrics';

const app = express();
initMetrics(app);

By default, it will create a new /metrics endpoint, with some nodejs and express metrics.

Custom metrics

The initMetrics function takes an optional options parameter with the following signature:

options?: {
  promBundleOptions?: promBundle.Opts;
  normalizedPath?: NormalizePathEntry[] | NormalizePathFn;
  whitelistedPath?: RegExp[];
  errorHandler?: (e: any) => void;
}

promBundleOptions

The same object as https://github.com/jochen-schweizer/express-prom-bundle#options, to override the default option set by the lib.

normalizedPath

Same as object as https://github.com/jochen-schweizer/express-prom-bundle#more-details-on-includepath-option

In case promBundleOptions is set, it will have priority over this option.

whitelistedPath

An array of RegExp, to filter the HTTP requests tracked by the metrics.

In case promBundleOptions is set, it will have priority over this option.

errorHandler

An error handler function, to handle error thrown by the pushgateway connection.

Default: (e: any) => console.log(e)

Default metrics

The module export default metrics from https://github.com/siimon/prom-client and https://github.com/jochen-schweizer/express-prom-bundle, as well as some custom metrics tailored for the @snapshot-labs.

Custom Metrics

The module export a client object, which is a prom-client instance. You can use it to create custom metrics.

  new client.Gauge({
    name: 'my_custom_metric',
    help: 'My custom metric',
    labelNames: ['my_label'],
  }).set({ my_label: 'my_value' }, 1);

See https://github.com/siimon/prom-client#custom-metrics

Authentication

You can lock the /metrics behind authencation by setting the METRICS_AUTHORIZATION env variable.

You then need to use the Authorization header when polling the /metrics endpoint:

curl -X GET -H "Authorization: Bearer [METRICS_AUTHORIZATION]" http://localhost/metrics

Pushgateway

You can push the metrics to a pushgateway by setting the METRICS_PUSHGATEWAY_URL and METRICS_INSTANCE env variable.

# Value to be used as prefix to the instance label of pushed metrics
METRICS_INSTANCE=snapshot.org
# URL of the pushgateway
METRICS_PUSHGATEWAY_URL=http://localhost:9091
# Job name to be added to the job label of pushed metrics
METRICS_JOB_NAME=prometheus # Default

The pushed metrics instance label will be set to the process.env.METRICS_INSTANCE, followed by process.env.HOSTNAME, in order to differentiate multiple servers/container running the same service. HOSTNAME should already be set by most server.

If the pushgateway requires authentication, set the following env var:

# Basic auth user
METRICS_PUSHGATEWAY_USER=
# Basic auth password
METRICS_PUSHGATEWAY_PASSWORD=

License

MIT