Lines Matching full:tracing
1 ![Tracing — Structured, application-level diagnostics][splash]
3 [splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
5 # tracing-attributes
7 Macro attributes for application-level tracing.
18 [crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg
19 [crates-url]: https://crates.io/crates/tracing-attributes
20 [docs-badge]: https://docs.rs/tracing-attributes/badge.svg
21 [docs-url]: https://docs.rs/tracing-attributes/0.1.23
23 [docs-master-url]: https://tracing-rs.netlify.com/tracing_attributes
26 [actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg
27 [actions-url]:https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI
33 [`tracing`] is a framework for instrumenting Rust programs to collect
36 `tracing`.
38 Note that this macro is also re-exported by the main `tracing` crate.
50 tracing-attributes = "0.1.23"
55 with a `tracing` [span]. For example:
66 [`tracing`]: https://crates.io/crates/tracing
67 [span]: https://docs.rs/tracing/latest/tracing/span/index.html
71 Tracing is built against the latest stable release. The minimum supported
72 version is 1.49. The current Tracing version is not guaranteed to build on Rust
75 Tracing follows the same compiler support policies as the rest of the Tokio