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 @@ -9,6 +9,7 @@ import { firebaseIntegration, instrumentFirebase } from './firebase';
99import { genericPoolIntegration , instrumentGenericPool } from './genericPool' ;
1010import { graphqlIntegration , instrumentGraphql } from './graphql' ;
1111import { hapiIntegration , instrumentHapi } from './hapi' ;
12+ import { honoIntegration , instrumentHono } from './hono' ;
1213import { instrumentKafka , kafkaIntegration } from './kafka' ;
1314import { instrumentKoa , koaIntegration } from './koa' ;
1415import { instrumentLruMemoizer , lruMemoizerIntegration } from './lrumemoizer' ;
@@ -32,6 +33,7 @@ export function getAutoPerformanceIntegrations(): Integration[] {
3233 expressIntegration ( ) ,
3334 fastifyIntegration ( ) ,
3435 graphqlIntegration ( ) ,
36+ honoIntegration ( ) ,
3537 mongoIntegration ( ) ,
3638 mongooseIntegration ( ) ,
3739 mysqlIntegration ( ) ,
@@ -68,6 +70,7 @@ export function getOpenTelemetryInstrumentationToPreload(): (((options?: any) =>
6870 instrumentFastify ,
6971 instrumentFastifyV3 ,
7072 instrumentHapi ,
73+ instrumentHono ,
7174 instrumentKafka ,
7275 instrumentKoa ,
7376 instrumentLruMemoizer ,
You can’t perform that action at this time.
0 commit comments