Rocky_Mountain_Vending/.pnpm-store/v10/files/29/797417035e698680c7d17b680f75d46ba7bde2e7c8cc01863e3b72cdf469cd4b8ad1a5dc98f02c4ec85ce304db64ecb015df68c0108e08a91484c60fb5f120
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
1.1 KiB
Text

import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
import { 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