@myrotvorets/opentelemetry-plugin-knex
v0.38.1
Published
OpenTelemetry knex automatic instrumentation package
Downloads
839
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.