We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1daa90c commit 349b9b7Copy full SHA for 349b9b7
packages/node-experimental/src/sdk/client.ts
@@ -14,6 +14,18 @@ export class NodeExperimentalClient extends NodeClient {
14
private _tracer: Tracer | undefined;
15
16
public constructor(options: ConstructorParameters<typeof NodeClient>[0]) {
17
+ options._metadata = options._metadata || {};
18
+ options._metadata.sdk = options._metadata.sdk || {
19
+ name: 'sentry.javascript.node-experimental',
20
+ packages: [
21
+ {
22
+ name: 'npm:@sentry/node-experimental',
23
+ version: SDK_VERSION,
24
+ },
25
+ ],
26
27
+ };
28
+
29
super(options);
30
31
this.otelHooks = new OtelHooks();
0 commit comments