@@ -141,12 +141,6 @@ async function defaultConfigureInstrumentations() {
141141 ) ;
142142 instrumentations . push ( new ConnectInstrumentation ( ) ) ;
143143 }
144- if ( activeInstrumentations . has ( 'cucumber' ) ) {
145- const { CucumberInstrumentation } = await import (
146- '@opentelemetry/instrumentation-cucumber'
147- ) ;
148- instrumentations . push ( new CucumberInstrumentation ( ) ) ;
149- }
150144 if ( activeInstrumentations . has ( 'dataloader' ) ) {
151145 const { DataloaderInstrumentation } = await import (
152146 '@opentelemetry/instrumentation-dataloader'
@@ -171,12 +165,6 @@ async function defaultConfigureInstrumentations() {
171165 ) ;
172166 instrumentations . push ( new FsInstrumentation ( ) ) ;
173167 }
174- if ( activeInstrumentations . has ( 'generic-pool' ) ) {
175- const { GenericPoolInstrumentation } = await import (
176- '@opentelemetry/instrumentation-generic-pool'
177- ) ;
178- instrumentations . push ( new GenericPoolInstrumentation ( ) ) ;
179- }
180168 if ( activeInstrumentations . has ( 'graphql' ) ) {
181169 const { GraphQLInstrumentation } = await import (
182170 '@opentelemetry/instrumentation-graphql'
@@ -225,12 +213,6 @@ async function defaultConfigureInstrumentations() {
225213 ) ;
226214 instrumentations . push ( new KoaInstrumentation ( ) ) ;
227215 }
228- if ( activeInstrumentations . has ( 'lru-memoizer' ) ) {
229- const { LruMemoizerInstrumentation } = await import (
230- '@opentelemetry/instrumentation-lru-memoizer'
231- ) ;
232- instrumentations . push ( new LruMemoizerInstrumentation ( ) ) ;
233- }
234216 if ( activeInstrumentations . has ( 'memcached' ) ) {
235217 const { MemcachedInstrumentation } = await import (
236218 '@opentelemetry/instrumentation-memcached'
0 commit comments