File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
dev-packages/node-integration-tests/suites/tracing/dataloader
packages/node/src/integrations/tracing Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Sentry.init({
66 release : '1.0' ,
77 tracesSampleRate : 1.0 ,
88 transport : loggingTransport ,
9+ integrations : [ Sentry . dataloaderIntegration ( ) ] ,
910} ) ;
1011
1112const PORT = 8008 ;
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import { instrumentHttp } from '../http';
33
44import { amqplibIntegration , instrumentAmqplib } from './amqplib' ;
55import { connectIntegration , instrumentConnect } from './connect' ;
6- import { dataloaderIntegration , instrumentDataloader } from './dataloader' ;
76import { expressIntegration , instrumentExpress } from './express' ;
87import { fastifyIntegration , instrumentFastify } from './fastify' ;
98import { genericPoolIntegration , instrumentGenericPool } from './genericPool' ;
@@ -44,7 +43,6 @@ export function getAutoPerformanceIntegrations(): Integration[] {
4443 connectIntegration ( ) ,
4544 genericPoolIntegration ( ) ,
4645 kafkaIntegration ( ) ,
47- dataloaderIntegration ( ) ,
4846 amqplibIntegration ( ) ,
4947 lruMemoizerIntegration ( ) ,
5048 ] ;
@@ -74,7 +72,6 @@ export function getOpenTelemetryInstrumentationToPreload(): (((options?: any) =>
7472 instrumentGraphql ,
7573 instrumentRedis ,
7674 instrumentGenericPool ,
77- instrumentDataloader ,
7875 instrumentAmqplib ,
7976 ] ;
8077}
You can’t perform that action at this time.
0 commit comments