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 @@ -10,6 +10,7 @@ import { genericPoolIntegration, instrumentGenericPool } from './genericPool';
1010import { googleGenAIIntegration , instrumentGoogleGenAI } from './google-genai' ;
1111import { graphqlIntegration , instrumentGraphql } from './graphql' ;
1212import { hapiIntegration , instrumentHapi } from './hapi' ;
13+ import { honoIntegration , instrumentHono } from './hono' ;
1314import { instrumentKafka , kafkaIntegration } from './kafka' ;
1415import { instrumentKoa , koaIntegration } from './koa' ;
1516import { instrumentLruMemoizer , lruMemoizerIntegration } from './lrumemoizer' ;
@@ -33,6 +34,7 @@ export function getAutoPerformanceIntegrations(): Integration[] {
3334 expressIntegration ( ) ,
3435 fastifyIntegration ( ) ,
3536 graphqlIntegration ( ) ,
37+ honoIntegration ( ) ,
3638 mongoIntegration ( ) ,
3739 mongooseIntegration ( ) ,
3840 mysqlIntegration ( ) ,
@@ -70,6 +72,7 @@ export function getOpenTelemetryInstrumentationToPreload(): (((options?: any) =>
7072 instrumentFastify ,
7173 instrumentFastifyV3 ,
7274 instrumentHapi ,
75+ instrumentHono ,
7376 instrumentKafka ,
7477 instrumentKoa ,
7578 instrumentLruMemoizer ,
You can’t perform that action at this time.
0 commit comments