I think it'd be cool to have a polling interface over some of the metrics we gather from /proc. Rust Streams are ideal for such an interface.
while let Some(metric) = stream.next().await {
// do something
}
We can then consume these streams concurrently in the agent.
I think it'd be cool to have a polling interface over some of the metrics we gather from
/proc. Rust Streams are ideal for such an interface.We can then consume these streams concurrently in the agent.