UNPKG

openlit

Version:

OpenTelemetry-native Auto instrumentation library for monitoring LLM Applications, facilitating the integration of observability into your GenAI-driven projects

12 lines (11 loc) 631 B
import { InstrumentationBase, InstrumentationModuleDefinition } from '@opentelemetry/instrumentation'; import { InstrumentationConfig } from '@opentelemetry/instrumentation'; export interface PineconeInstrumentationConfig extends InstrumentationConfig { } export default class OpenlitPineconeInstrumentation extends InstrumentationBase { constructor(config?: PineconeInstrumentationConfig); protected init(): void | InstrumentationModuleDefinition | InstrumentationModuleDefinition[]; manualPatch(pinecone: any): void; protected _patch(moduleExports: any): void; protected _unpatch(moduleExports: any): void; }