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
745 B
Plaintext
16 lines
745 B
Plaintext
import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
|
|
import { RedisInstrumentationConfig } from '../types';
|
|
export declare class RedisInstrumentationV2_V3 extends InstrumentationBase<RedisInstrumentationConfig> {
|
|
static readonly COMPONENT = "redis";
|
|
private _semconvStability;
|
|
constructor(config?: RedisInstrumentationConfig);
|
|
setConfig(config?: RedisInstrumentationConfig): void;
|
|
protected init(): InstrumentationNodeModuleDefinition[];
|
|
/**
|
|
* Patch internal_send_command(...) to trace requests
|
|
*/
|
|
private _getPatchInternalSendCommand;
|
|
private _getPatchCreateClient;
|
|
private _getPatchCreateStream;
|
|
}
|
|
//# sourceMappingURL=instrumentation.d.ts.map |