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