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>
23 lines
No EOL
940 B
Text
23 lines
No EOL
940 B
Text
import { ExpressInstrumentationConfig, ExpressRequestInfo } from './types';
|
|
import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
|
|
/** Express instrumentation for OpenTelemetry */
|
|
export declare class ExpressInstrumentation extends InstrumentationBase<ExpressInstrumentationConfig> {
|
|
constructor(config?: ExpressInstrumentationConfig);
|
|
init(): InstrumentationNodeModuleDefinition[];
|
|
/**
|
|
* 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 |