Rocky_Mountain_Vending/.pnpm-store/v10/files/90/bbe7eb58d95cdfbbcdbe6d87a0537b12b828ea4e22d13b17eaff2dfbcf003b3bbeffb3c7219d50f87698e0393d1908010e9cf82af4097dfb74c7a923980ee3
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

27 lines
No EOL
1.1 KiB
Text

import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
import type { ExpressInstrumentationConfig, ExpressRequestInfo } from './types';
export declare const PACKAGE_VERSION = "0.1.0";
export declare const PACKAGE_NAME = "@sentry/instrumentation-express-v5";
/** Express instrumentation for OpenTelemetry */
export declare class ExpressInstrumentationV5 extends InstrumentationBase<ExpressInstrumentationConfig> {
constructor(config?: ExpressInstrumentationConfig);
init(): InstrumentationNodeModuleDefinition[];
private _setup;
private _tearDown;
/**
* Get the patch for Router.route function
*/
private _getRoutePatch;
/**
* Get the patch for Router.use function
*/
private _getRouterUsePatch;
/**
* Get the patch for Application.use function
*/
private _getAppUsePatch;
/** Patch each express layer to create span and propagate context */
private _applyPatch;
_getSpanName(info: ExpressRequestInfo, defaultName: string): string;
}
//# sourceMappingURL=instrumentation.d.ts.map