• Home
  • Raw
  • Download

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-core
7 Core primitives for application-level tracing.
18 [crates-badge]: https://img.shields.io/crates/v/tracing-core.svg
19 [crates-url]: https://crates.io/crates/tracing-core/0.1.30
20 [docs-badge]: https://docs.rs/tracing-core/badge.svg
21 [docs-url]: https://docs.rs/tracing-core/0.1.30
23 [docs-master-url]: https://tracing-rs.netlify.com/tracing_core
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
35 primitives of `tracing`.
54 dispatcher which other components of the tracing system rely on.
63 will use the [`tracing`] crate, which provides a much more fully-featured
67 `Subscriber` implementations may depend on `tracing-core` rather than `tracing`,
68 as the additional APIs provided by `tracing` are primarily useful for
82 tracing-core = { version = "0.1.30", default-features = false }
85 **Note**:`tracing-core`'s `no_std` support requires `liballoc`.
87 [`tracing`]: ../tracing
88 [`span::Id`]: https://docs.rs/tracing-core/0.1.30/tracing_core/span/struct.Id.html
89 [`Event`]: https://docs.rs/tracing-core/0.1.30/tracing_core/event/struct.Event.html
90 [`Subscriber`]: https://docs.rs/tracing-core/0.1.30/tracing_core/subscriber/trait.Subscriber.html
91 [`Metadata`]: https://docs.rs/tracing-core/0.1.30/tracing_core/metadata/struct.Metadata.html
92 [`Callsite`]: https://docs.rs/tracing-core/0.1.30/tracing_core/callsite/trait.Callsite.html
93 [`Field`]: https://docs.rs/tracing-core/0.1.30/tracing_core/field/struct.Field.html
94 [`FieldSet`]: https://docs.rs/tracing-core/0.1.30/tracing_core/field/struct.FieldSet.html
95 [`Value`]: https://docs.rs/tracing-core/0.1.30/tracing_core/field/trait.Value.html
96 [`ValueSet`]: https://docs.rs/tracing-core/0.1.30/tracing_core/field/struct.ValueSet.html
97 [`Dispatch`]: https://docs.rs/tracing-core/0.1.30/tracing_core/dispatcher/struct.Dispatch.html
101 Tracing is built against the latest stable release. The minimum supported
102 version is 1.49. The current Tracing version is not guaranteed to build on Rust
105 Tracing follows the same compiler support policies as the rest of the Tokio