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-appender-log/CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
## vNext
4
4
5
+
-[1869](https://github.com/open-telemetry/opentelemetry-rust/pull/1869) Utilize the `LogRecord::set_target()` method to pass the log target to the SDK.
6
+
5
7
## v0.4.0
6
8
7
9
- Add log key-values as attributes [#1628](https://github.com/open-telemetry/opentelemetry-rust/pull/1628)
Copy file name to clipboardexpand all lines: opentelemetry-appender-tracing/CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@
2
2
3
3
## vNext
4
4
5
+
-[1869](https://github.com/open-telemetry/opentelemetry-rust/pull/1869) Utilize the `LogRecord::set_target()` method to pass the tracing target to the SDK.
6
+
Exporters might use the target to override the instrumentation scope, which previously contained "opentelemetry-appender-tracing".
7
+
5
8
## v0.4.0
6
9
7
10
- Removed unwanted dependency on opentelemetry-sdk.
Copy file name to clipboardexpand all lines: opentelemetry-otlp/CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ now use `.with_resource(RESOURCE::default())` to configure Resource when using
18
18
- Bump MSRV to 1.70 [#1840](https://github.com/open-telemetry/opentelemetry-rust/pull/1840)
19
19
- Fixing the OTLP HTTP/JSON exporter. [#1882](https://github.com/open-telemetry/opentelemetry-rust/pull/1882) - The exporter was broken in the
20
20
previous release.
21
+
-**Breaking**[1869](https://github.com/open-telemetry/opentelemetry-rust/pull/1869) The OTLP logs exporter now overrides the [InstrumentationScope::name](https://github.com/open-telemetry/opentelemetry-proto/blob/b3060d2104df364136d75a35779e6bd48bac449a/opentelemetry/proto/common/v1/common.proto#L73) field with the `target` from `LogRecord`, if target is populated.
Update `LogProcessor::emit() method to take mutable reference to LogData. This is breaking
@@ -47,6 +47,34 @@
47
47
48
48
-[1857](https://github.com/open-telemetry/opentelemetry-rust/pull/1857) Fixed an issue in Metrics SDK which prevented export errors from being send to global error handler. With the fix, errors occurring during export like OTLP Endpoint unresponsive shows up in stderr by default.
49
49
50
+
-[1869](https://github.com/open-telemetry/opentelemetry-rust/pull/1869) Added a `target` field to `LogRecord` structure, populated by `opentelemetry-appender-tracing` and `opentelemetry-appender-log` appenders.
The `LogRecord::target` field contains the actual target/component emitting the logs, while the `Instrumentation::name` contains the name of the OpenTelemetry appender.
77
+
50
78
## v0.23.0
51
79
52
80
- Fix SimpleSpanProcessor to be consistent with log counterpart. Also removed
0 commit comments