rezolus
rezolus copied to clipboard
Systems performance telemetry
This change brings the augur profiler in as a subfolder within rezolus. It's not quite integrated yet but I'm getting this out there as a draft PR so people can...
Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.38 to 0.10.48. Release notes Sourced from openssl's releases. openssl v0.10.48 What's Changed Fix LibreSSL version checking in openssl/ by @alex in sfackler/rust-openssl#1851 Skip a test that...
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.19.2 to 1.20.4. Release notes Sourced from tokio's releases. Tokio v1.20.2 1.20.2 (September 27, 2022) This release removes the dependency on the once_cell crate to restore the...
Bumps [bumpalo](https://github.com/fitzgen/bumpalo) from 3.7.0 to 3.12.0. Changelog Sourced from bumpalo's changelog. 3.12.0 Released 2023-01-17. Added Added the bumpalo::boxed::Box::bump and bumpalo::collections::String::bump getters to get the underlying Bump that a string or...
Currently the memcache sampler in Rezolus only supports passing a single Memcache endpoint to monitor and sample https://github.com/twitter/rezolus/blob/master/src/config/samplers.rs#L93 https://github.com/twitter/rezolus/blob/fadf6f8eba44002dc51911ca738f63b432f620b0/src/samplers/memcache/mod.rs#L43-L57 It would be nice if we could pass a comma separated...
Add push support for telemetry publishing, currently we only support pull-based collection. We should extend the metrics library to allow for pluggable exposition and publishing. Targets to consider for push...
Hi, The point I would like to confirm is below. https://github.com/twitter/rezolus/blob/8f726f964d7818a1ab7a6cc3e8c0f1d6f7cceb43/src/samplers/cpu/mod.rs#L357 The document about read_u64 is written below. ``` Reads an unsigned 64-bit integer in big-endian order from the underlying...
In #108 we added support to expose metrics for interrupts per NUMA node. There has also been interest in exposing metrics for individual disks, network interfaces, etc. To better support...
tiny_http is being flagged for having an open rustsec advisory: ``` error: 1 vulnerability found! ID: RUSTSEC-2020-0000 Crate: tiny_http Version: 0.6.2 Date: 2020-06-16 URL: https://rustsec.org/advisories/RUSTSEC-2020-0000 Title: HTTP Request smuggling through...
Perf events sampler needs more advanced scheduling. We may want to limit the number of event counters to avoid multiplexing on the PMUs. Extending support to per-cgroup as requested in...