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
// It would have been better to make this method required, but that ship
64
68
// sailed when the logs API was declared stable.
65
69
otel_warn!(
66
70
name:"LogProcessor.DefaultShutdownWithTimeout",
67
-
message = format!("LogProcessor::shutdown_with_timeout should be implemented by all LogProcessor types")
71
+
message = "LogProcessor is using default shutdown implementation. If this processor manages background threads, network connections, file handles, or other resources that need cleanup, implement `shutdown_with_timeout()` to properly release them. Simple processors that only transform log data can safely use this default."
Copy file name to clipboardExpand all lines: opentelemetry/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ Released 2025-Sep-25
10
10
11
11
-*Breaking* Change return type of `opentelemetry::global::set_tracer_provider` to Unit to align with metrics counterpart
12
12
- Add `get_all` method to `opentelemetry::propagation::Extractor` to return all values of the given propagation key and provide a default implementation.
13
+
- Add an `IntoIterator` implementation for `opentelemetry::trace::TraceState` to allow iterating through its key-value pair collection.
0 commit comments