Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Prometheus.Netstandard20.zip | 2023-12-05 | 128.3 kB | |
Prometheus.NetCore70.zip | 2023-12-05 | 140.7 kB | |
Prometheus.NetFramework.AspNet.zip | 2023-12-05 | 11.8 kB | |
Prometheus.Net462.zip | 2023-12-05 | 125.2 kB | |
Prometheus.NetCore60.zip | 2023-12-05 | 139.6 kB | |
Prometheus.AspNetCore.Grpc.zip | 2023-12-05 | 21.9 kB | |
Prometheus.AspNetCore.HealthChecks.zip | 2023-12-05 | 19.3 kB | |
Prometheus.AspNetCore.zip | 2023-12-05 | 42.0 kB | |
README.md | 2023-12-05 | 730 Bytes | |
v8.2.0 - performance improvements source code.tar.gz | 2023-12-05 | 1.2 MB | |
v8.2.0 - performance improvements source code.zip | 2023-12-05 | 1.4 MB | |
Totals: 11 Items | 3.2 MB | 1 |
- .WithLabels() & similar now accept ReadOnlyMemory<string> as alternative to string[]. Same behavior, just easier to use if you already have a ReadOnlyMemory<string>.
- .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.
- Incorporated various optimizations to reduce the required CPU time and allocated memory, including [#410], [#443] and other contributions.
- Observation of large histograms is now 10-30% faster on machines that support AVX2 instructions.
- health checks exposed via ForwardToPrometheus() no longer create a default metric if a custom metric is provided [#444]