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 4b2e027 commit 9ec3c64Copy full SHA for 9ec3c64
metapackages/auto-instrumentations-node/src/utils.ts
@@ -136,7 +136,10 @@ const InstrumentationMap = {
136
'@opentelemetry/instrumentation-winston': WinstonInstrumentation,
137
};
138
139
-const defaultExcludedInstrumentations = ['@opentelemetry/instrumentation-fs', '@opentelemetry/instrumentation-fastify'];
+const defaultExcludedInstrumentations = [
140
+ '@opentelemetry/instrumentation-fs',
141
+ '@opentelemetry/instrumentation-fastify',
142
+];
143
144
// Config types inferred automatically from the first argument of the constructor
145
type ConfigArg<T> = T extends new (...args: infer U) => unknown ? U[0] : never;
0 commit comments