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
As raised in #16969, the Bun SDK doesn't currently export
`skipOpenTelemetrySetup` in the SDK init options type, altghough the
option can be correctly passed to the underlying `NodeClient`. This patch
exports the option now.
* If this is set to true, the SDK will not set up OpenTelemetry automatically.
28
+
* In this case, you _have_ to ensure to set it up correctly yourself, including:
29
+
* * The `SentrySpanProcessor`
30
+
* * The `SentryPropagator`
31
+
* * The `SentryContextManager`
32
+
* * The `SentrySampler`
33
+
*
34
+
* If you are registering your own OpenTelemetry Loader Hooks (or `import-in-the-middle` hooks), it is also recommended to set the `registerEsmLoaderHooks` option to false.
35
+
*/
36
+
skipOpenTelemetrySetup?: boolean;
37
+
26
38
/** Callback that is executed when a fatal global error occurs. */
0 commit comments