Files
klz-cables.com/.pnpm-store/v10/files/52/aadd2b6342a7beb493ca8e89fc56fc28d10f5e0ff9e17f6a215eadbaaf416ea55531a14b5acf556dce894f82722f18e406cf9f2cf41bfde990012f994084f5
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
1.0 KiB
Plaintext

import { InstrumentationBase, type InstrumentationConfig, type InstrumentationModuleDefinition } from '@opentelemetry/instrumentation';
import type { Integration, OpenAiOptions } from '@sentry/core';
export interface OpenAiIntegration extends Integration {
options: OpenAiOptions;
}
type OpenAiInstrumentationOptions = InstrumentationConfig & OpenAiOptions;
/**
* Sentry OpenAI instrumentation using OpenTelemetry.
*/
export declare class SentryOpenAiInstrumentation extends InstrumentationBase<OpenAiInstrumentationOptions> {
constructor(config?: OpenAiInstrumentationOptions);
/**
* Initializes the instrumentation by defining the modules to be patched.
*/
init(): InstrumentationModuleDefinition;
/**
* Core patch logic applying instrumentation to the OpenAI and AzureOpenAI client constructors.
*/
private _patch;
/**
* Patch logic applying instrumentation to the specified client constructor.
*/
private _patchClient;
}
export {};
//# sourceMappingURL=instrumentation.d.ts.map