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
17 lines
657 B
Plaintext
17 lines
657 B
Plaintext
import { InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
|
|
import { FastifyInstrumentationConfig } from './types';
|
|
/**
|
|
* Fastify instrumentation for OpenTelemetry
|
|
*/
|
|
export declare class FastifyInstrumentationV3 extends InstrumentationBase<FastifyInstrumentationConfig> {
|
|
constructor(config?: FastifyInstrumentationConfig);
|
|
init(): InstrumentationNodeModuleDefinition[];
|
|
private _hookOnRequest;
|
|
private _wrapHandler;
|
|
private _wrapAddHook;
|
|
private _patchConstructor;
|
|
private _patchSend;
|
|
private _hookPreHandler;
|
|
}
|
|
//# sourceMappingURL=instrumentation.d.ts.map
|