You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: opentelemetry-sdk/CHANGELOG.md
+19-13Lines changed: 19 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@
17
17
-*Feature*: Add `ResourceBuilder` for an easy way to create new `Resource`s
18
18
-*Breaking*: Remove `Resource::{new,empty,from_detectors,new_with_defaults,from_schema_url,merge,default}` from public api. To create Resources you should only use `Resource::builder()` or `Resource::builder_empty()`. See [#2322](https://github.com/open-telemetry/opentelemetry-rust/pull/2322) for a migration guide.
19
19
Example Usage:
20
+
20
21
```rust
21
22
// old
22
23
Resource::default().with_attributes([
@@ -30,6 +31,7 @@
30
31
.with_attribute(KeyValue::new("key", "value"))
31
32
.build();
32
33
```
34
+
33
35
-*Breaking* The LogExporter::export() method no longer requires a mutable reference to self.:
0 commit comments