
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@sentry/opentelemetry
Advanced tools
This package allows you to send your OpenTelemetry trace data to Sentry via OpenTelemetry SpanProcessors.
If you are using @sentry/node, OpenTelemetry support is included out of the box. This package is only necessary if you
are setting up OpenTelemetry support for Sentry yourself.
npm install @sentry/opentelemetry
# Or yarn
yarn add @sentry/opentelemetry
Note that @sentry/opentelemetry depends on the following peer dependencies:
@opentelemetry/api version 1.0.0 or greater@opentelemetry/core version 1.0.0 or greater@opentelemetry/sdk-trace-base version 1.0.0 or greater, or a package that implements that, like
@opentelemetry/sdk-node.This package exposes a few building blocks you can add to your OpenTelemetry setup in order to capture OpenTelemetry traces to Sentry.
This is how you can use this in your app:
@sentry/node!setupEventContextTrace(client)SentrySampler as samplerSentrySpanProcessor as span processorSentryAsyncLocalStorageContextManager, or wrapContextManagerClass for a custom base)SentryPropagator as propagatorsetOpenTelemetryContextAsyncContextStrategy()For example, you could set this up as follows:
import * as Sentry from '@sentry/node';
import {
SentryAsyncLocalStorageContextManager,
SentryPropagator,
SentrySampler,
SentrySpanProcessor,
setupEventContextTrace,
setOpenTelemetryContextAsyncContextStrategy,
} from '@sentry/opentelemetry';
import { context, propagation, trace } from '@opentelemetry/api';
function setupSentry() {
Sentry.init({
dsn: 'xxx',
});
const client = Sentry.getClient();
setupEventContextTrace(client);
const provider = new BasicTracerProvider({
sampler: new SentrySampler(client),
});
provider.addSpanProcessor(new SentrySpanProcessor());
// Initialize the provider
trace.setGlobalTracerProvider(provider);
propagation.setGlobalPropagator(new SentryPropagator());
context.setGlobalContextManager(new SentryAsyncLocalStorageContextManager());
setOpenTelemetryContextAsyncContextStrategy();
}
A full setup example can be found in node-experimental.
SentryTracerProvider is a minimal OpenTelemetry tracer provider which creates native Sentry spans directly.
It is useful when code uses the global OpenTelemetry API and you do not need the full OpenTelemetry SDK span processor
and exporter pipeline.
import { trace } from '@opentelemetry/api';
import { SentryTracerProvider } from '@sentry/opentelemetry';
trace.setGlobalTracerProvider(new SentryTracerProvider());
const span = trace.getTracer('example').startSpan('work');
span.end();
In @sentry/node, this is the default tracer provider. To use the full OpenTelemetry SDK BasicTracerProvider
instead, opt out with:
Sentry.init({
dsn: 'xxx',
openTelemetryBasicTracerProvider: true,
});
Providing openTelemetrySpanProcessors also falls back to the full OpenTelemetry SDK provider, since custom span
processors require the SDK span pipeline. The SentryTracerProvider does not handle OpenTelemetry logs and metrics.
FAQs
Official Sentry utilities for OpenTelemetry
The npm package @sentry/opentelemetry receives a total of 17,357,654 weekly downloads. As such, @sentry/opentelemetry popularity was classified as popular.
We found that @sentry/opentelemetry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.