@myrotvorets/opentelemetry-plugin-knex
v1.1.0
Published
OpenTelemetry knex automatic instrumentation package
Maintainers
Readme
opentelemetry-plugin-knex
OpenTelemetry knex automatic instrumentation package
Usage
import { NodeSDK } from '@opentelemetry/sdk-node';
import { KnexInstrumentation } from '@myrotvorets/opentelemetry-plugin-knex';
import { HttpInstrumentation } from '@opentelemetry/instrumentation-http';
const sdk = new NodeSDK({
serviceName: 'example',
instrumentations: [new HttpInstrumentation(), new KnexInstrumentation()],
});
sdk.start();See the example directory for a working example.
