@opentelemetry/instrumentation-restify

OpenTelemetry restify automatic instrumentation package

Usage no npm install needed!

<script type="module">
  import opentelemetryInstrumentationRestify from 'https://cdn.skypack.dev/@opentelemetry/instrumentation-restify';
</script>

README

OpenTelemetry Restify Instrumentation for Node.js

NPM Published Version dependencies devDependencies Apache License

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/sdk-trace-node package.

Compatible with OpenTelemetry JS API and SDK 1.0+.

Installation

npm install --save @opentelemetry/instrumentation-restify

Supported Versions

  • >=4.0.0

Usage

const { RestifyInstrumentation } = require('@opentelemetry/instrumentation-restify');
const { ConsoleSpanExporter, SimpleSpanProcessor } = require('@opentelemetry/sdk-trace-base');
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-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.