fix: add Hapi and Koa to default supported plugins (#1440)

Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com>
This commit is contained in:
carolinee21 2020-08-19 08:28:59 -07:00 committed by GitHub
parent d68ff0fb75
commit ddd84ff4a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -38,4 +38,6 @@ export const DEFAULT_INSTRUMENTATION_PLUGINS: Plugins = {
ioredis: { enabled: true, path: '@opentelemetry/plugin-ioredis' },
'pg-pool': { enabled: true, path: '@opentelemetry/plugin-pg-pool' },
express: { enabled: true, path: '@opentelemetry/plugin-express' },
'@hapi/hapi': { enabled: true, path: '@opentelemetry/hapi-instrumentation' },
koa: { enabled: true, path: '@opentelemetry/koa-instrumentation' },
};