File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export { postgresIntegration } from './integrations/tracing/postgres';
15
15
export { postgresJsIntegration } from './integrations/tracing/postgresjs' ;
16
16
export { prismaIntegration } from './integrations/tracing/prisma' ;
17
17
export { hapiIntegration , setupHapiErrorHandler } from './integrations/tracing/hapi' ;
18
+ export { honoIntegration , setupHonoErrorHandler } from './integrations/tracing/hono' ;
18
19
export { koaIntegration , setupKoaErrorHandler } from './integrations/tracing/koa' ;
19
20
export { connectIntegration , setupConnectErrorHandler } from './integrations/tracing/connect' ;
20
21
export { knexIntegration } from './integrations/tracing/knex' ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { firebaseIntegration, instrumentFirebase } from './firebase';
8
8
import { genericPoolIntegration , instrumentGenericPool } from './genericPool' ;
9
9
import { graphqlIntegration , instrumentGraphql } from './graphql' ;
10
10
import { hapiIntegration , instrumentHapi } from './hapi' ;
11
+ import { honoIntegration , instrumentHono } from './hono' ;
11
12
import { instrumentKafka , kafkaIntegration } from './kafka' ;
12
13
import { instrumentKoa , koaIntegration } from './koa' ;
13
14
import { instrumentLruMemoizer , lruMemoizerIntegration } from './lrumemoizer' ;
@@ -31,6 +32,7 @@ export function getAutoPerformanceIntegrations(): Integration[] {
31
32
expressIntegration ( ) ,
32
33
fastifyIntegration ( ) ,
33
34
graphqlIntegration ( ) ,
35
+ honoIntegration ( ) ,
34
36
mongoIntegration ( ) ,
35
37
mongooseIntegration ( ) ,
36
38
mysqlIntegration ( ) ,
@@ -65,6 +67,7 @@ export function getOpenTelemetryInstrumentationToPreload(): (((options?: any) =>
65
67
instrumentFastify ,
66
68
instrumentFastifyV3 ,
67
69
instrumentHapi ,
70
+ instrumentHono ,
68
71
instrumentKafka ,
69
72
instrumentKoa ,
70
73
instrumentLruMemoizer ,
You can’t perform that action at this time.
0 commit comments