0.3.13 • Published 4 years ago

@loopback/extension-metrics v0.3.13

Weekly downloads
606
License
MIT
Repository
github
Last release
4 years ago

@loopback/extension-metrics

This module contains a component that reports metrics of Node.js, LoopBack framework, and your application to Prometheus.

Stability: ⚠️Experimental⚠️

Experimental packages provide early access to advanced or experimental functionality to get community feedback. Such modules are published to npm using 0.x.y versions. Their APIs and functionality may be subject to breaking changes in future releases.

Installation

npm install --save @loopback/extension-metrics

Basic use

The component should be loaded in the constructor of your custom Application class.

Start by importing the component class:

import {MetricsComponent} from '@loopback/extension-metrics';

In the constructor, add the component to your application:

this.component(MetricsComponent);

By default, Metrics route is mounted at /metrics. This path can be customized via Metrics configuration as follows:

this.configure(MetricsBindings.COMPONENT).to({
  endpoint: {
    basePath: '/metrics',
  },
  defaultMetrics: {
    timeout: 5000,
  },
});

Metrics Collected

There are three types of metrics being collected by this component:

  1. Node.js metrics - built-in by https://github.com/siimon/prom-client
  2. LoopBack method invocations - built-in by this module using an interceptor
  3. Metrics by the application code or other modules - instrumentations are required

Pull vs Push

Prometheus supports two modes to collect metrics:

  • pull - scraping from metrics http endpoint exposed by the system being monitored
  • push - pushing metrics from the system being monitored to a push gateway

See https://prometheus.io/docs/introduction/faq/#why-do-you-pull-rather-than-push

Try it out

git clone https://github.com/strongloop/loopback-next
npm install
npm run build
cd examples/metrics-prometheus
npm run demo

Open http://localhost:9090 to load Prometheus web UI.

/metrics endpoint

http://localhost:3000/metrics returns metrics in plain text format. It includes information for the Node.js process as well as LoopBack method invocations.

Contributions

Tests

Run npm test from the root folder.

Contributors

See all contributors.

License

MIT

0.3.13

4 years ago

0.3.12

4 years ago

0.3.11

4 years ago

0.3.10

4 years ago

0.3.9

4 years ago

0.3.8

4 years ago

0.3.7

4 years ago

0.3.6

4 years ago

0.3.5

4 years ago

0.3.4

4 years ago

0.3.3

4 years ago

0.3.2

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago