We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03873ef commit d58a487Copy full SHA for d58a487
packages/datadog-instrumentations/src/helpers/register.js
@@ -20,7 +20,9 @@ const disabledInstrumentations = new Set(
20
const loadChannel = channel('dd-trace:instrumentation:load')
21
22
// Globals
23
-require('../fetch')
+if (!disabledInstrumentations.has('fetch')) {
24
+ require('../fetch')
25
+}
26
27
// TODO: make this more efficient
28
0 commit comments