Files
klz-cables.com/.pnpm-store/v10/files/9d/ac1f915f36cdf9e51aed9f34502a65c2d93f04472ccb65522a203b2fc856bf8b3c5d95c2e5ab24f1bc1b80674e91ec737f00c060efd4cb6da6e03fd10587c4
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

23 lines
940 B
Plaintext

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