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';
1515export { postgresJsIntegration } from './integrations/tracing/postgresjs' ;
1616export { prismaIntegration } from './integrations/tracing/prisma' ;
1717export { hapiIntegration , setupHapiErrorHandler } from './integrations/tracing/hapi' ;
18+ export { honoIntegration , setupHonoErrorHandler } from './integrations/tracing/hono' ;
1819export { koaIntegration , setupKoaErrorHandler } from './integrations/tracing/koa' ;
1920export { connectIntegration , setupConnectErrorHandler } from './integrations/tracing/connect' ;
2021export { knexIntegration } from './integrations/tracing/knex' ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { firebaseIntegration, instrumentFirebase } from './firebase';
88import { genericPoolIntegration , instrumentGenericPool } from './genericPool' ;
99import { graphqlIntegration , instrumentGraphql } from './graphql' ;
1010import { hapiIntegration , instrumentHapi } from './hapi' ;
11+ import { honoIntegration , instrumentHono } from './hono' ;
1112import { instrumentKafka , kafkaIntegration } from './kafka' ;
1213import { instrumentKoa , koaIntegration } from './koa' ;
1314import { instrumentLruMemoizer , lruMemoizerIntegration } from './lrumemoizer' ;
@@ -31,6 +32,7 @@ export function getAutoPerformanceIntegrations(): Integration[] {
3132 expressIntegration ( ) ,
3233 fastifyIntegration ( ) ,
3334 graphqlIntegration ( ) ,
35+ honoIntegration ( ) ,
3436 mongoIntegration ( ) ,
3537 mongooseIntegration ( ) ,
3638 mysqlIntegration ( ) ,
@@ -65,6 +67,7 @@ export function getOpenTelemetryInstrumentationToPreload(): (((options?: any) =>
6567 instrumentFastify ,
6668 instrumentFastifyV3 ,
6769 instrumentHapi ,
70+ instrumentHono ,
6871 instrumentKafka ,
6972 instrumentKoa ,
7073 instrumentLruMemoizer ,
You can’t perform that action at this time.
0 commit comments