Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/547e1640702ba2e99204c28c2400718d99b12ac2affb2b5a4de2e22676ca724f2c626d104c76409abb1967f264805555698a6ee6233ba224831988b071dd0e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

14 lines
696 B
Text

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