You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: lookup of own package.json in published package
In the published package, the path to our own package.json file (from
which we read the version for the resource attribute
telemetry.distro.version) is different compared to development.
`Unexpected package name in our own package.json: ${packageJson.name}, will not transmit telemetry.distro.version. This warning can be safely ignored.`,
50
+
);
51
+
}
52
+
53
+
printDebugStdout('Starting NodeSDK.');
27
54
28
55
letsdkShutdownHasBeenCalled=false;
29
56
@@ -48,7 +75,7 @@ sdk.start();
48
75
createBootstrapSpanIfRequested();
49
76
installProcessExitHandlers();
50
77
51
-
printDebugOutput('Dash0 OpenTelemetry distribution for Node.js: NodeSDK started.');
78
+
printDebugStdout('NodeSDK started.');
52
79
53
80
functionspanProcessors(): SpanProcessor[]{
54
81
constspanProcessors: SpanProcessor[]=[
@@ -105,10 +132,13 @@ function createInstrumentationConfig(): any {
0 commit comments