File tree 2 files changed +4
-2
lines changed
src/frontend/utils/telemetry
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ the release.
43
43
([ #1460 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1460 ) )
44
44
* [ frontendproxy] remove deprecated start_child_span option
45
45
([ #1469 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1469 ) )
46
+ * [ frontend] disable instrumentation-fs library
47
+ ([ #1473 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1473 ) )
46
48
47
49
## 1.8.0
48
50
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ const sdk = new opentelemetry.NodeSDK({
16
16
traceExporter : new OTLPTraceExporter ( ) ,
17
17
instrumentations : [
18
18
getNodeAutoInstrumentations ( {
19
- // only instrument fs if it is part of another trace
19
+ // disable fs instrumentation to reduce noise
20
20
'@opentelemetry/instrumentation-fs' : {
21
- requireParentSpan : true ,
21
+ enabled : false ,
22
22
} ,
23
23
} )
24
24
] ,
You can’t perform that action at this time.
0 commit comments