Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@bpinternal/promex

Package Overview
Dependencies
7
Maintainers
4
Versions
15
Issues
File Explorer

Advanced tools

@bpinternal/promex

Prometheus express initialization package for nodejs.

    0.5.1latest
    GitHub

Version published
Maintainers
4
Weekly downloads
1,151
increased by5.02%

Weekly downloads

Readme

Source

Promex

Prometheus client initialization package for express

Usage

Promex is a utility to initialize the Promster library. Install the package and see the example below

import * as promex from '@bpinternal/promex'; import express from 'express'; const backend = express(); const admin = express(); [...] promex.init(backend); // Adds a recording middleware on the express app promex.init(admin); // Adds a recording middleware on the express app [...] promex.start() // Starts a metrics server on port 9090

Promex can also be used with an handler on an express app

import * as promex from '@bpinternal/promex'; import express from 'express'; const app = express() app.get('/metrics', promex.handler()) // Adds a '/metrics' endpoint that returns the Prometheus metrics promex.init(app) // Adds a recording middleware on the express app [...] app.listen()

Disclaimer ⚠️

This package is published under the @bpinternal organization. All packages of this organization are meant to be used by the Botpress team internally and are not meant for our community. However, these packages were still left intentionally public for an important reason : We Love Open-Source. Therefore, if you wish to install this package feel absolutly free to do it. We strongly recomand that you tag your versions properly.

The Botpress Engineering team.

Licensing

This software is protected by the same license as the main Botpress repository. You can find the license file here.

FAQs

Last updated on 31 Oct 2022

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc