File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 44
55- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66
7+ ### Important Changes
8+
79- ** feat(nestjs): Instrument ` @nestjs/bullmq ` ` @Processor ` decorator**
810
911 Automatically capture exceptions and create transactions for BullMQ queue processors in NestJS applications.
4850 changes. We cannot yet guarantee full support for server-islands, due to a [ bug in Astro v6] ( https://github.com/withastro/astro/issues/15753 )
4951 but we'll follow up on this once the bug is fixed.
5052
53+ - ** feat(node-core): Add OTLP integration for node-core/light ([ #19729 ] ( https://github.com/getsentry/sentry-javascript/pull/19729 ) )**
54+
55+ Added ` otlpIntegration ` at ` @sentry/node-core/light/otlp ` for users who manage
56+ their own OpenTelemetry setup and want to send trace data to Sentry without
57+ adopting the full ` @sentry/node ` SDK.
58+
59+ ``` js
60+ import { NodeTracerProvider } from ' @opentelemetry/sdk-trace-node' ;
61+ import * as Sentry from ' @sentry/node-core/light' ;
62+ import { otlpIntegration } from ' @sentry/node-core/light/otlp' ;
63+
64+ const provider = new NodeTracerProvider ();
65+ provider .register ();
66+
67+ Sentry .init ({
68+ dsn: ' __DSN__' ,
69+ integrations: [
70+ otlpIntegration ({
71+ // Export OTel spans to Sentry via OTLP (default: true)
72+ setupOtlpTracesExporter: true ,
73+ }),
74+ ],
75+ });
76+ ```
77+
78+ The integration links Sentry errors to OTel traces and exports spans to Sentry via OTLP.
79+
5180## 10.43.0
5281
5382### Important Changes
You can’t perform that action at this time.
0 commit comments