tracing icon indicating copy to clipboard operation
tracing copied to clipboard

Application level tracing for Rust.

Results 338 tracing issues
Sort by recently updated
recently updated
newest added

## Bug Report ### Version ```txt % cargo tree | grep tracing │ │ │ │ │ │ └── tracing v0.1.40 │ │ │ │ │ │ ├── tracing-attributes v0.1.27...

## Bug Report ### Version mixed ### Platform macOS ### Description 1. Depend on `tracing-subscriber = { version = 0.3.18, features = ["env-filter", "json", "registry", "tracing-log"] }` from crates.io 2....

## Motivation Noticed a mistake in the `span_enabled!` documentation, it was copied over from `event_enabled!` ## Solution Fix the documentation

> log/src/main.rs ``` use log::{debug, error, info, trace, warn}; fn main() { std::env::set_var("RUST_LOG", "trace"); env_logger::init(); trace!("trace"); debug!("debug"); info!("info"); warn!("warn"); error!("error"); } ``` > tracing/src/main.rs ``` use tracing::{trace, debug, info, warn,...

This patch adds size-based rotation to tracing-appender. Closes https://github.com/tokio-rs/tracing/issues/1940 Closes https://github.com/tokio-rs/tracing/issues/858 cc @hawkw @IniterWorker @CfirTsabari @davidbarsky @CBenoit There is another pull request (https://github.com/tokio-rs/tracing/pull/2497) for this feature but I thought I...

Add a macro that provides a more consise way of recording a new value for a field. ## Motivation The ability to record updated values for a span is very...

## Feature Request ### Crates tracing-subscriber ### Motivation tracing-subscriber depends on `matchers`, which depends on old `regex-autometa`, results a huge binary bloating when users want to use latest `regex`. While...

## Motivation The 'tracing::span!' macro supports passing in field names as string literals, which can be used to use an invalid Rust identifier as a field name (e.g. "type"). However,...

This removes the copyright year in all the LICENSE files. It also uses the MIT license text with the wrapping from https://choosealicense.com/licenses/mit/ rather than the more narrow wrapped text that...

Adds a link to tracing-aliyun-sls, a crate provides layer to integrate Aliyun SLS with tracing. Disclosure: I am the maintainer of the tracing-aliyun-sls project.