Socket
Socket
Sign inDemoInstall

@bpinternal/promex

Package Overview
Dependencies
136
Maintainers
4
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bpinternal/promex

Prometheus express initialization package for nodejs.


Version published
Weekly downloads
1.1K
increased by143.68%
Maintainers
4
Created
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 for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • 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