0.35.13 • Published 10 months ago

@codeparrot/instrumentation-http v0.35.13

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
10 months ago

OpenTelemetry HTTP and HTTPS Instrumentation for Node.js

NPM Published Version Apache License

Note: This is an experimental package under active development. New releases may include breaking changes.

This module provides automatic instrumentation for http and https.

For automatic instrumentation see the @opentelemetry/sdk-trace-node package.

Installation

npm install --save @opentelemetry/instrumentation-http

Usage

OpenTelemetry HTTP Instrumentation allows the user to automatically collect trace data and export them to their backend of choice, to give observability to distributed systems.

To load a specific instrumentation (HTTP in this case), specify it in the Node Tracer's configuration.

const { HttpInstrumentation } = require('@opentelemetry/instrumentation-http');
const {
  ConsoleSpanExporter,
  NodeTracerProvider,
  SimpleSpanProcessor,
} = 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 HttpInstrumentation()],
});

See examples/http for a short example.

Http instrumentation Options

Http instrumentation has few options available to choose from. You can set the following:

OptionsTypeDescription
applyCustomAttributesOnSpanHttpCustomAttributeFunctionFunction for adding custom attributes
requestHookHttpRequestCustomAttributeFunctionFunction for adding custom attributes before request is handled
responseHookHttpResponseCustomAttributeFunctionFunction for adding custom attributes before response is handled
startIncomingSpanHookStartIncomingSpanCustomAttributeFunctionFunction for adding custom attributes before a span is started in incomingRequest
startOutgoingSpanHookStartOutgoingSpanCustomAttributeFunctionFunction for adding custom attributes before a span is started in outgoingRequest
ignoreIncomingRequestHookIgnoreIncomingRequestFunctionHttp instrumentation will not trace all incoming requests that matched with custom function
ignoreOutgoingRequestHookIgnoreOutgoingRequestFunctionHttp instrumentation will not trace all outgoing requests that matched with custom function
serverNamestringThe primary server name of the matched virtual host.
requireParentforOutgoingSpansBooleanRequire that is a parent span to create new span for outgoing requests.
requireParentforIncomingSpansBooleanRequire that is a parent span to create new span for incoming requests.
headersToSpanAttributesobjectList of case insensitive HTTP headers to convert to span attributes. Client (outgoing requests, incoming responses) and server (incoming requests, outgoing responses) headers will be converted to span attributes in the form of http.{request\|response}.header.header_name, e.g. http.response.header.content_length

The following options are deprecated:

OptionsTypeDescription
ignoreIncomingPathsIgnoreMatcher[]Http instrumentation will not trace all incoming requests that match paths
ignoreOutgoingUrlsIgnoreMatcher[]Http instrumentation will not trace all outgoing requests that match urls

Useful links

License

Apache 2.0 - See LICENSE for more information.

0.35.13

10 months ago

0.35.12

11 months ago

0.0.10002

11 months ago

0.0.10003

11 months ago

0.35.11

12 months ago

0.35.10

1 year ago

0.35.9

1 year ago

0.35.8

1 year ago

0.35.7

1 year ago

0.35.6

1 year ago

0.35.5

1 year ago

0.35.4

1 year ago

0.35.3

1 year ago

0.35.1

1 year ago