rust_tracy_client icon indicating copy to clipboard operation
rust_tracy_client copied to clipboard

Tracy client libraries for Rust

Results 8 rust_tracy_client issues
Sort by recently updated
recently updated
newest added

Leaving this as a draft since I haven't had a chance to test it.

The PDF mentions an API (`FrameImage`) for sending screengrabs to the server. Is that something that's possible to support in the rust client? > It is possible to attach a...

Hi, I was previously using version 0.10, and I was able to only enable the tracy client if my program received some CLI argument (_enable-tracy_, for instance). On version 0.11,...

https://docs.rs/tracy-client/latest/tracy_client/macro.span.html It is not clear from the rust tracy client docs what a "Tracy span" is. If we take a look in Tracy itself, they only mention the word "span"...

With this plain `error!("banana")` can take as little as 200ns (~0 overhead) but it will also lead to no meaningful messages if you have `error!(someotherkey)`, and it will also drop...

Tracing spans don't need to be hierarchical, it is entirely possible to have spans looking like this ``` | -- S1 -- | | -- S2 -- | | --...

Rust's std library has the concept of [named threads](https://doc.rust-lang.org/std/thread/#naming-threads), but the names are currently not passed to Tracy. This PR adds `set_thread_name_from_std()` in tracy-client for passing the std thread names...

Thanks for making this crate. Is it possible to use proc macro attributes like this with this crate? :) https://kanejaku.org/posts/2020/10/tracy-profiler-zone-scoped-in-rust/