Hacker News new | ask | show | jobs
by AceJohnny2 1647 days ago
Can tokio-console be used on Rust async programs that don't use the tokio runtime (assuming such arises on desktop)?
1 comments

Yeah, it is decoupled from Tokio. Tokio emits instrumentation via the `tracing` crate. Tokio Console just listens to the tracing events. Any runtime that emits the same events can be used with Tokio Console. This is the tracking issue: https://github.com/tokio-rs/console/issues/130