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

27 lines
1.0 KiB
Plaintext

import { InstrumentationBase, InstrumentationConfig, InstrumentationModuleDefinition } from '@opentelemetry/instrumentation';
import { 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