File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
### Changed
8
8
9
+ - TraceExporter fixed to print InstrumentationScope's attributes.
9
10
- Fix StatusCode in stdout exporter [ #1454 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/1454 )
10
11
- Add missing event timestamps [ #1391 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/1391 )
11
12
- Adjusted ` chrono ` features to reduce number of transitive dependencies. [ #1569 ] ( https://github.com/open-telemetry/opentelemetry-rust/pull/1569 )
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ impl From<opentelemetry_sdk::Scope> for Scope {
234
234
Scope {
235
235
name : value. name ,
236
236
version : value. version ,
237
- attributes : Vec :: new ( ) ,
237
+ attributes : value . attributes . into_iter ( ) . map ( Into :: into ) . collect ( ) ,
238
238
dropped_attributes_count : 0 ,
239
239
}
240
240
}
You can’t perform that action at this time.
0 commit comments