Gathering detailed insights and metrics for @opentelemetry/instrumentation-http
Gathering detailed insights and metrics for @opentelemetry/instrumentation-http
Gathering detailed insights and metrics for @opentelemetry/instrumentation-http
Gathering detailed insights and metrics for @opentelemetry/instrumentation-http
@opentelemetry/instrumentation-xml-http-request
OpenTelemetry instrumentation for XMLHttpRequest http client in web browsers
@opentelemetry/instrumentation-express
OpenTelemetry instrumentation for `express` http web application framework
@opentelemetry/instrumentation-koa
OpenTelemetry instrumentation for `koa` http web application framework
@opentelemetry/instrumentation-hapi
OpenTelemetry instrumentation for `@hapi/hapi` http web application framework
OpenTelemetry JavaScript Client
npm install @opentelemetry/instrumentation-http
Typescript
Module System
Min. Node Version
Node Version
NPM Version
93.5
Supply Chain
98.7
Quality
92.5
Maintenance
100
Vulnerability
99.3
License
experimental/v0.202.0
Updated on Jun 02, 2025
semconv/v1.34.0
Updated on May 21, 2025
semconv/v1.33.1
Updated on May 20, 2025
experimental/v0.201.1
Updated on May 19, 2025
experimental/v0.201.0
Updated on May 15, 2025
v2.0.1
Updated on May 15, 2025
TypeScript (96.66%)
JavaScript (3.06%)
Jinja (0.19%)
Shell (0.08%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
3,020 Stars
2,702 Commits
899 Forks
53 Watchers
15 Branches
337 Contributors
Updated on Jun 30, 2025
Minified
Minified + Gzipped
Latest Version
0.202.0
Package Id
@opentelemetry/instrumentation-http@0.202.0
Unpacked Size
266.24 kB
Size
55.11 kB
File Count
27
NPM Version
lerna/6.6.2/node@v18.20.8+x64 (linux)
Node Version
18.20.8
Published on
Jun 02, 2025
Cumulative downloads
Total Downloads
4
1
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.
1npm install --save @opentelemetry/instrumentation-http
>=14
OpenTelemetry HTTP Instrumentation allows the user to automatically collect telemetry and export it 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.
1const { HttpInstrumentation } = require('@opentelemetry/instrumentation-http'); 2const { 3 ConsoleSpanExporter, 4 NodeTracerProvider, 5 SimpleSpanProcessor, 6} = require('@opentelemetry/sdk-trace-node'); 7const { registerInstrumentations } = require('@opentelemetry/instrumentation'); 8 9const provider = new NodeTracerProvider({ 10 spanProcessors: [new SimpleSpanProcessor(new ConsoleSpanExporter())] 11}); 12 13provider.register(); 14 15registerInstrumentations({ 16 instrumentations: [new HttpInstrumentation()], 17}); 18
See examples/http for a short example.
Http instrumentation has a few configuration options available to choose from. You can set the following:
Options | Type | Description |
---|---|---|
applyCustomAttributesOnSpan | HttpCustomAttributeFunction | Function for adding custom attributes |
requestHook | HttpRequestCustomAttributeFunction | Function for adding custom attributes before request is handled |
responseHook | HttpResponseCustomAttributeFunction | Function for adding custom attributes before response is handled |
startIncomingSpanHook | StartIncomingSpanCustomAttributeFunction | Function for adding custom attributes before a span is started in incomingRequest |
startOutgoingSpanHook | StartOutgoingSpanCustomAttributeFunction | Function for adding custom attributes before a span is started in outgoingRequest |
ignoreIncomingRequestHook | IgnoreIncomingRequestFunction | Http instrumentation will not trace all incoming requests that matched with custom function |
ignoreOutgoingRequestHook | IgnoreOutgoingRequestFunction | Http instrumentation will not trace all outgoing requests that matched with custom function |
disableOutgoingRequestInstrumentation | boolean | Set to true to avoid instrumenting outgoing requests at all. This can be helpful when another instrumentation handles outgoing requests. |
disableIncomingRequestInstrumentation | boolean | Set to true to avoid instrumenting incoming requests at all. This can be helpful when another instrumentation handles incoming requests. |
serverName | string | The primary server name of the matched virtual host. |
requireParentforOutgoingSpans | Boolean | Require that is a parent span to create new span for outgoing requests. |
requireParentforIncomingSpans | Boolean | Require that is a parent span to create new span for incoming requests. |
headersToSpanAttributes | object | List 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 |
Prior to version 0.54.0
, this instrumentation created spans targeting an experimental semantic convention Version 1.7.0.
HTTP semantic conventions (semconv) were stabilized in v1.23.0, and a migration process was defined.
instrumentation-http
versions 0.54.0 and later include support for migrating to stable HTTP semantic conventions, as described below.
The intent is to provide an approximate 6 month time window for users of this instrumentation to migrate to the new HTTP semconv, after which a new minor version will use the new semconv by default and drop support for the old semconv.
See the HTTP semconv migration plan for OpenTelemetry JS instrumentations.
To select which semconv version(s) is emitted from this instrumentation, use the OTEL_SEMCONV_STABILITY_OPT_IN
environment variable.
http
: emit the new (stable) v1.23.0+ semanticshttp/dup
: emit both the old v1.7.0 and the new (stable) v1.23.0+ semanticsOTEL_SEMCONV_STABILITY_OPT_IN
includes neither of the above tokens, the old v1.7.0 semconv is used.v1.7.0 semconv | v1.23.0 semconv | Short Description |
---|---|---|
http.client_ip | client.address | The IP address of the original client behind all proxies, if known |
http.flavor | network.protocol.version | Kind of HTTP protocol used |
http.host | server.address | The value of the HTTP host header |
http.method | http.request.method | HTTP request method |
http.request_content_length | (opt-in, headersToSpanAttributes ) | The size of the request payload body in bytes. For newer semconv, use the headersToSpanAttributes: option to capture this as http.request.header.content_length . |
http.request_content_length_uncompressed | (not included) | The size of the uncompressed request payload body after transport decoding. (In semconv v1.23.0 this is defined by http.request.body.size , which is experimental and opt-in.) |
http.response_content_length | (opt-in, headersToSpanAttributes ) | The size of the response payload body in bytes. For newer semconv, use the headersToSpanAttributes: option to capture this as http.response.header.content_length . |
http.response_content_length_uncompressed | (not included) | The size of the uncompressed response payload body after transport decoding. (In semconv v1.23.0 this is defined by http.response.body.size , which is experimental and opt-in.) |
http.route | no change | The matched route (path template). |
http.scheme | url.scheme | The URI scheme identifying the used protocol |
http.server_name | server.address | The primary server name of the matched virtual host |
http.status_code | http.response.status_code | HTTP response status code |
http.target | url.path and url.query | The URI path and query component |
http.url | url.full | Full HTTP request URL in the form scheme://host[:port]/path?query[#fragment] |
http.user_agent | user_agent.original | Value of the HTTP User-Agent header sent by the client |
net.host.ip | network.local.address | Like net.peer.ip but for the host IP. Useful in case of a multi-IP host |
net.host.name | server.address | Local hostname or similar |
net.host.port | server.port | Like net.peer.port but for the host port |
net.peer.ip. | network.peer.address | Remote address of the peer (dotted decimal for IPv4 or RFC5952 for IPv6) |
net.peer.name | server.address | Server domain name if available without reverse DNS lookup |
net.peer.port | server.port | Server port number |
net.transport | network.transport | Transport protocol used |
Metrics Exported:
When upgrading to the new semantic conventions, it is recommended to do so in the following order:
@opentelemetry/instrumentation-http
to the latest versionOTEL_SEMCONV_STABILITY_OPT_IN=http/dup
to emit both old and new semantic conventionsOTEL_SEMCONV_STABILITY_OPT_IN=http
to emit only the new semantic conventionsThis will cause both the old and new semantic conventions to be emitted during the transition period.
Apache 2.0 - See LICENSE for more information.
No vulnerabilities found.
Reason
update tool detected
Details
Reason
30 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10
Reason
all changesets reviewed
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
30 out of 30 merged PRs checked by a CI test -- score normalized to 10
Reason
project has 43 contributing companies or organizations
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
Project has not signed or included provenance with any releases.
Details
Reason
project is not fuzzed
Details
Reason
13 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30T07:48:53Z
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreLast Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year