Files
klz-cables.com/.pnpm-store/v10/files/a8/c0433eefa53526e34b8c6e349b7cee4e4fe52ef1027e5364ddc1763ffb3fd289cdd1861ebb0d06a8d2b3b6a71c12fd2a8c6f1874e783535c24b7708d27f99e
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

26 lines
917 B
Plaintext

import { InstrumentationBase } from '@opentelemetry/instrumentation';
import { InstrumentationConfig } from '@opentelemetry/instrumentation';
import { InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
import { registerInstrumentations } from '@opentelemetry/instrumentation';
import { TracerProvider } from '@opentelemetry/api';
declare type Config = PrismaInstrumentationConfig & InstrumentationConfig;
export declare class PrismaInstrumentation extends InstrumentationBase {
private tracerProvider;
constructor(config?: Config);
setTracerProvider(tracerProvider: TracerProvider): void;
init(): InstrumentationNodeModuleDefinition[];
enable(): void;
disable(): void;
isEnabled(): boolean;
}
declare interface PrismaInstrumentationConfig {
ignoreSpanTypes?: (string | RegExp)[];
}
export { registerInstrumentations }
export { }