10 lines
471 B
TypeScript
10 lines
471 B
TypeScript
import { InstrumentationConfig, InstrumentationBase, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
|
|
export default class RouterInstrumentation extends InstrumentationBase {
|
|
constructor(config?: InstrumentationConfig);
|
|
private _moduleVersion?;
|
|
init(): InstrumentationNodeModuleDefinition;
|
|
private _requestHandlerPatcher;
|
|
private _errorHandlerPatcher;
|
|
private _setupSpan;
|
|
}
|
|
//# sourceMappingURL=instrumentation.d.ts.map
|