OpenTelemetry Router Instrumentation for Node.js
This module provides automatic instrumentation for router
and allows the user to automatically collect trace data and export them to their backend of choice.
For automatic instrumentation see the
@opentelemetry/sdk-trace-node package.
Compatible with OpenTelemetry JS API and SDK 1.0+
.
Installation
npm install --save @opentelemetry/instrumentation-router
Supported Versions
Usage
const { ConsoleSpanExporter, SimpleSpanProcessor } = require('@opentelemetry/sdk-trace-base');
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
const { registerInstrumentations } = require('@opentelemetry/instrumentation');
const RouterInstrumentation = require('@opentelemetry/instrumentation-router');
const provider = new NodeTracerProvider();
provider.addSpanProcessor(new SimpleSpanProcessor(new ConsoleSpanExporter()));
provider.register();
registerInstrumentations({
instrumentations: [new RouterInstrumentation()],
tracerProvider: provider,
});
See examples/router for a short example.
Useful links
License
Apache 2.0 - See LICENSE for more information.