Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@opentelemetry/node
Advanced tools
OpenTelemetry Node SDK provides automatic telemetry (tracing, metrics, etc) for Node.js applications
This module provides automated instrumentation and tracing for Node.js applications.
For manual instrumentation see the @opentelemetry/tracing package.
This package exposes a NodeTracerProvider
that will automatically hook into the module loader of Node.js.
For this to work, please make sure that NodeTracerProvider
is initialized before any other module of your application, (like http
or express
) is loaded.
OpenTelemetry comes with a growing number of instrumentation plugins for well know modules (see supported modules) and an API to create custom plugins (see the plugin developer guide).
Whenever a module is loaded NodeTracerProvider
will check if a matching instrumentation plugin has been installed.
Please note: This module does not bundle any plugins. They need to be installed separately.
If the respective plugin was found, it will be used to patch the original module to add instrumentation code. This is done by wrapping all tracing-relevant functions.
This instrumentation code will automatically
In short, this means that this module will use provided plugins to automatically instrument your application to produce spans and provide end-to-end tracing by just adding a few lines of code.
Additionally to automated instrumentation, NodeTracerProvider
exposes the same API as @opentelemetry/tracing, allowing creating custom spans if needed.
npm install --save @opentelemetry/api
npm install --save @opentelemetry/node
# Install instrumentation plugins
npm install --save @opentelemetry/plugin-http
npm install --save @opentelemetry/plugin-https
The following code will configure the NodeTracerProvider
to instrument http
using @opentelemetry/plugin-http
.
const { NodeTracerProvider } = require('@opentelemetry/node');
// Create and configure NodeTracerProvider
const provider = new NodeTracerProvider({
plugins: {
http: {
enabled: true,
// You may use a package name or absolute path to the file.
path: '@opentelemetry/plugin-http',
// http plugin options
}
}
});
// Initialize the provider
provider.register()
// Your application code - http will automatically be instrumented if
// @opentelemetry/plugin-http is present
const http = require('http');
To enable instrumentation for all supported modules, create an instance of NodeTracerProvider
without providing any plugin configuration to the constructor.
const { NodeTracerProvider } = require('@opentelemetry/node');
// Create and initialize NodeTracerProvider
const provider = new NodeTracerProvider();
// Initialize the provider
provider.register()
// Your application code
// ...
See how to automatically instrument http and gRPC using node-sdk.
Apache 2.0 - See LICENSE for more information.
0.8.0
Released 2020-05-12
opentelemetry-api
, opentelemetry-metrics
opentelemetry-plugin-http
opentelemetry-core
opentelemetry-plugin-xml-http-reques
opentelemetry-plugin-grpc
opentelemetry-exporter-collector
opentelemetry-exporter-zipkin
, opentelemetry-plugin-http
, opentelemetry-tracing
opentelemetry-tracing
opentelemetry-metrics
, opentelemetry-tracing
opentelemetry-metrics
opentelemetry-plugin-http
opentelemetry-api
, opentelemetry-node
, opentelemetry-plugin-grpc
, opentelemetry-plugin-http
, opentelemetry-plugin-https
, opentelemetry-plugin-xml-http-request
, opentelemetry-tracing
, opentelemetry-web
opentelemetry-api
opentelemetry-core
, opentelemetry-base
opentelemetry-core
FAQs
OpenTelemetry Node SDK provides automatic telemetry (tracing, metrics, etc) for Node.js applications
The npm package @opentelemetry/node receives a total of 24,227 weekly downloads. As such, @opentelemetry/node popularity was classified as popular.
We found that @opentelemetry/node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.