@sentry/node
Version:
Sentry Node SDK using OpenTelemetry for performance instrumentation
15 lines (12 loc) • 696 B
JavaScript
import { AsyncLocalStorageContextManager } from '@opentelemetry/context-async-hooks';
import { wrapContextManagerClass } from '@sentry/opentelemetry';
/**
* This is a custom ContextManager for OpenTelemetry, which extends the default AsyncLocalStorageContextManager.
* It ensures that we create a new hub per context, so that the OTEL Context & the Sentry Scopes are always in sync.
*
* Note that we currently only support AsyncHooks with this,
* but since this should work for Node 14+ anyhow that should be good enough.
*/
const SentryContextManager = wrapContextManagerClass(AsyncLocalStorageContextManager);
export { SentryContextManager };
//# sourceMappingURL=contextManager.js.map