metrics
metrics copied to clipboard
A metrics ecosystem for Rust.
Further to https://github.com/metrics-rs/metrics/pull/313, I believe we have a problem given that std-atomics are a default feature for the metrics crate. As with any feature, you cannot "unset" it. Therefore, when...
The std-atomic feature is not required as the portable atomics library will fall back to native atomics when there are available. Additionally, having a std-atomics feature as a default prevents...
Updates the requirements on [tui](https://github.com/fdehau/tui-rs) to permit the latest version. Release notes Sourced from tui's releases. v0.19.0 Features Bump crossterm to 0.25 Changelog Sourced from tui's changelog. v0.19.0 - 2022-08-14...
- update to hyper 1.1 - factor large `PrometheusBuilder`.`build` function into separate functions - move those functions into separate modules to reduce some of the feature driven uses - add...
Adds bucket duration as configurable element for rolling summaries.
Doesn't look like this has been asked here before. One thing my team is looking for is the ability to specify histogram buckets when registering a histogram. This can currently...
Commit f7e979a1b648e0dd8b25ff179c11ce5e15727fcc (`fix ahash MSRV nonsense`) locks down the version of ahash to
### What - add purge_timeout option to PrometheusBuilder - run a purger that purges based on the purge_timeout --- Implements third way as [prescribed here](https://github.com/metrics-rs/metrics/issues/245#issuecomment-974155299) to purge old histogram data:...
Updates the requirements on [ahash](https://github.com/tkaitchuck/ahash) to permit the latest version. Release notes Sourced from ahash's releases. v0.8.9 Minor patch to fix #207 Full Changelog: https://github.com/tkaitchuck/aHash/compare/v0.8.8...v0.8.9 Commits 3f90890 Bump version to...
Hello, I just noticed that metrics still only supports `std` env. and it would be beneficial to take a look at how much effort is needed to make it `no_std`...