Socket
Socket
Sign inDemoInstall

@opencensus/exporter-prometheus

Package Overview
Dependencies
Maintainers
7
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opencensus/exporter-prometheus

OpenCensus Exporter Prometheus allows user to send collected stats to Prometheus


Version published
Maintainers
7
Created
Source

OpenCensus Prometheus Stats Exporter

Gitter chat Node Version NPM Published Version dependencies Status devDependencies Status Apache License

The OpenCensus Prometheus Stats Exporter allows the user to send collected stats with OpenCensus Core to Prometheus.

Prometheus is a monitoring system that collects metrics, by scraping exposed endpoints at regular intervals, evaluating rule expressions. It can also trigger alerts if certain conditions are met. For assistance setting up Prometheus, Click here for a guided codelab.

This package is still at an early stage of development, and is subject to change.

Installation

Install OpenCensus Prometheus Exporter with:

npm install @opencensus/core
npm install @opencensus/exporter-prometheus

Usage

Create & register the exporter on your application.

For Javascript:

const { globalStats } = require('@opencensus/core');
const { PrometheusStatsExporter } = require('@opencensus/exporter-prometheus');

// Add your port and startServer to the Prometheus options
const exporter = new PrometheusStatsExporter({
  port: 9464,
  startServer: true
});

Now, register the exporter.

// Pass the created exporter to Stats
globalStats.registerExporter(exporter);

Similarly for TypeScript (Since the source is written in TypeScript):

import { PrometheusStatsExporter } from '@opencensus/exporter-prometheus';
import { globalStats } from '@opencensus/core';

// Add your port and startServer to the Prometheus options
const options = {port: 9464, startServer: true};
const exporter = new PrometheusStatsExporter(options);

// Pass the created exporter to Stats
globalStats.registerExporter(exporter);

Viewing your metrics:

With the above you should now be able to navigate to the Prometheus UI at: http://localhost:9464/metrics

LICENSE

Apache License 2.0

Keywords

FAQs

Package last updated on 09 Oct 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc