Files
klz-cables.com/.pnpm-store/v10/files/29/8604f92d4d9b68214bf64a820ab77d8f7aac79d2603a85a70ca7d206b5956099959d768215b87caaff2943323e47481c4cee3b874331e34536cfc8424f1f38
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

12 lines
711 B
Plaintext

import { AsyncLocalStorageContextManager } from '@opentelemetry/context-async-hooks';
/**
* 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.
*/
export declare const SentryContextManager: new (...args: unknown[]) => AsyncLocalStorageContextManager & {
getAsyncLocalStorageLookup(): import("@sentry/opentelemetry").AsyncLocalStorageLookup;
};
//# sourceMappingURL=contextManager.d.ts.map