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
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,43 @@
24
24
Migration Guidance:
25
25
- These methods were intended for log appenders. Keep the clone of the provider handle, instead of depending on above methods.
26
26
27
+
-*Breaking* - `PeriodicReader` Updates
28
+
29
+
`PeriodicReader` no longer requires an async runtime by default. Instead, it now creates its own background thread for execution. This change allows metrics to be used in environments without async runtimes.
30
+
31
+
For users who prefer the previous behavior of relying on a specific `Runtime`, they can do so by enabling the feature flag **`experimental_metrics_periodicreader_with_async_runtime`**.
32
+
33
+
Migration Guide:
34
+
35
+
1.*Default Implementation, requires no async runtime* (**Recommended**)
36
+
The new default implementation does not require a runtime argument. Replace the builder method accordingly:
0 commit comments