8000 ref(node-experimental): Cleanup tracing intergations (#10730) · GingerAdonis/sentry-javascript@c002d8f · GitHub
[go: up one dir, main page]

Skip to content

Commit c002d8f

Browse files
authored
ref(node-experimental): Cleanup tracing intergations (getsentry#10730)
This moves the tracing integration into a folder (to prepare to add more integrations from node), and also removes the deprecated legacy class integrations.
1 parent 97cc190 commit c002d8f

27 files changed

+293
-698
lines changed

packages/node-experimental/src/index.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
export { expressIntegration } from './integrations/express';
2-
export { fastifyIntegration } from './integrations/fastify';
3-
export { graphqlIntegration } from './integrations/graphql';
1+
export { expressIntegration } from './integrations/tracing/express';
2+
export { fastifyIntegration } from './integrations/tracing/fastify';
3+
export { graphqlIntegration } from './integrations/tracing/graphql';
44
export { httpIntegration } from './integrations/http';
5-
export { mongoIntegration } from './integrations/mongo';
6-
export { mongooseIntegration } from './integrations/mongoose';
7-
export { mysqlIntegration } from './integrations/mysql';
8-
expor 10000 t { mysql2Integration } from './integrations/mysql2';
9-
export { nestIntegration } from './integrations/nest';
5+
export { mongoIntegration } from './integrations/tracing/mongo';
6+
export { mongooseIntegration } from './integrations/tracing/mongoose';
7+
export { mysqlIntegration } from './integrations/tracing/mysql';
8+
export { mysql2Integration } from './integrations/tracing/mysql2';
9+
export { nestIntegration } from './integrations/tracing/nest';
1010
export { nativeNodeFetchIntegration } from './integrations/node-fetch';
11-
export { postgresIntegration } from './integrations/postgres';
12-
export { prismaIntegration } from './integrations/prisma';
11+
export { postgresIntegration } from './integrations/tracing/postgres';
12+
export { prismaIntegration } from './integrations/tracing/prisma';
1313

1414
export { init, getDefaultIntegrations } from './sdk/init';
15-
export { getAutoPerformanceIntegrations } from './integrations/getAutoPerformanceIntegrations';
15+
export { getAutoPerformanceIntegrations } from './integrations/tracing';
1616
export * as Handlers from './sdk/handlers';
1717
export type { Span } from './types';
1818

packages/node-experimental/src/integrations/NodePerformanceIntegration.ts

Lines changed: 0 additions & 57 deletions
This file was deleted.

packages/node-experimental/src/integrations/express.ts

Lines changed: 0 additions & 62 deletions
This file was deleted.

packages/node-experimental/src/integrations/fastify.ts

Lines changed: 0 additions & 63 deletions
This file was deleted.

packages/node-experimental/src/integrations/graphql.ts

Lines changed: 0 additions & 65 deletions
This file was deleted.

packages/node-experimental/src/integrations/hapi.ts

Lines changed: 0 additions & 51 deletions
This file was deleted.

packages/node-experimental/src/integrations/mongo.ts

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)
0