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
16 lines
735 B
Plaintext
16 lines
735 B
Plaintext
import { InstrumentationBase, InstrumentationModuleDefinition } from '@opentelemetry/instrumentation';
|
|
import { RedisInstrumentationConfig } from './types';
|
|
import { TracerProvider } from '@opentelemetry/api';
|
|
export declare class RedisInstrumentation extends InstrumentationBase<RedisInstrumentationConfig> {
|
|
private instrumentationV2_V3;
|
|
private instrumentationV4_V5;
|
|
private initialized;
|
|
constructor(config?: RedisInstrumentationConfig);
|
|
setConfig(config?: RedisInstrumentationConfig): void;
|
|
init(): void;
|
|
getModuleDefinitions(): InstrumentationModuleDefinition[];
|
|
setTracerProvider(tracerProvider: TracerProvider): void;
|
|
enable(): void;
|
|
disable(): void;
|
|
}
|
|
//# sourceMappingURL=redis.d.ts.map |