@danielkoehler/exporter-prometheus
TypeScript icon, indicating that this package has built-in type declarations

0.0.9 • Public • Published

OpenCensus Prometheus Exporter for Node.js

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

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

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

Useful links

LICENSE

Apache License 2.0

Package Sidebar

Install

npm i @danielkoehler/exporter-prometheus

Weekly Downloads

3

Version

0.0.9

License

Apache-2.0

Unpacked Size

15.8 kB

Total Files

3

Last publish

Collaborators

  • danielkoehler