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: History
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
* 8.2.0
2
-
- Various optimizations to reduce spent CPU time and allocated memory.
2
+
- .WithLabels() & similar now accept ReadOnlyMemory<string> as alternative to string[]. Same behavior, just easier to use if you already have a ReadOnlyMemory<string>.
3
+
- .WithLabels() & similar now accept ReadOnlySpan<string> as alternative to string[]. This enables allocation-free metric instance creation if a metric instance with these labels is already known.
4
+
- Incorporated various optimizations to reduce the required CPU time and allocated memory, including #410, #443 and other contributions.
5
+
- Observation of large histograms is now 10-30% faster on machines that support AVX2 instructions.
3
6
* 8.1.1
4
7
- Fix bug in .NET Meters API adapter for UpDownCounter, which was incorrectly transformed to Prometheus metrics. #452 and #453
0 commit comments