Files
klz-cables.com/.pnpm-store/v10/files/76/64e2a984a066fd044e44cbe2afd32cb9fe3c6ad00570bb667f399579359ad8639381fc126dd13d90949ddf8d68243f6405e25a62e84cb87d467a4d3d63baaa
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

19 lines
1.0 KiB
Plaintext

import { Span } from '@opentelemetry/api';
import type { HandleFunction, NextFunction, Server } from 'connect';
import { Use } from './internal-types';
import { InstrumentationBase, InstrumentationConfig, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
export declare const ANONYMOUS_NAME = "anonymous";
/** Connect instrumentation for OpenTelemetry */
export declare class ConnectInstrumentation extends InstrumentationBase {
constructor(config?: InstrumentationConfig);
init(): InstrumentationNodeModuleDefinition[];
private _patchApp;
private _patchConstructor;
_patchNext(next: NextFunction, finishSpan: () => void): NextFunction;
_startSpan(routeName: string, middleWare: HandleFunction): Span;
_patchMiddleware(routeName: string, middleWare: HandleFunction): HandleFunction;
_patchUse(original: Server['use']): Use;
_patchHandle(original: Server['handle']): Server['handle'];
_patchOut(out: NextFunction, completeStack: () => void): NextFunction;
}
//# sourceMappingURL=instrumentation.d.ts.map