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
22 lines
984 B
Plaintext
22 lines
984 B
Plaintext
import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
|
|
import { TediousInstrumentationConfig } from './types';
|
|
export declare const INJECTED_CTX: unique symbol;
|
|
export declare class TediousInstrumentation extends InstrumentationBase<TediousInstrumentationConfig> {
|
|
static readonly COMPONENT = "tedious";
|
|
private _netSemconvStability;
|
|
private _dbSemconvStability;
|
|
constructor(config?: TediousInstrumentationConfig);
|
|
private _setSemconvStabilityFromEnv;
|
|
protected init(): InstrumentationNodeModuleDefinition[];
|
|
private _patchConnect;
|
|
private _buildTraceparent;
|
|
/**
|
|
* Fire a one-off `SET CONTEXT_INFO @opentelemetry_traceparent` on the same
|
|
* connection. Marks the request with INJECTED_CTX so our patch skips it.
|
|
*/
|
|
private _injectContextInfo;
|
|
private _shouldInjectFor;
|
|
private _patchQuery;
|
|
private _patchCallbackQuery;
|
|
}
|
|
//# sourceMappingURL=instrumentation.d.ts.map |