athena_rs 3.4.7

Database driver
Documentation
//! Tokio console tracing helpers.
//!
//! Keeps the feature-specific subscriber logic out of the binary boot file.

use std::env;
use std::time::Duration;
use tracing_subscriber::filter::Targets;
use tracing_subscriber::layer::Layer;
use tracing_subscriber::registry::LookupSpan;

/// Returns whether the tokio-console subscriber should be enabled for this run.
pub fn env_opt_in() -> bool {
    env::var("ATHENA_BENCHMARK_CLIENT")
        .ok()
        .is_some_and(|v| v.trim().eq_ignore_ascii_case("true"))
}

/// Builds the tokio-console layer with repository-specific retention rules.
pub fn subscriber_layer<S>() -> impl Layer<S> + Send + Sync + 'static
where
    S: tracing::Subscriber + for<'a> LookupSpan<'a>,
{
    const MIN_RETENTION: Duration = Duration::from_secs(60 * 60);
    let retention = match env::var("TOKIO_CONSOLE_RETENTION") {
        Ok(s) => {
            let parsed = humantime::parse_duration(&s).unwrap_or_else(|e| {
                panic!("failed to parse a duration from `TOKIO_CONSOLE_RETENTION={s:?}`: {e}")
            });
            parsed.max(MIN_RETENTION)
        }
        Err(_) => console_subscriber::ConsoleLayer::DEFAULT_RETENTION,
    };

    console_subscriber::ConsoleLayer::builder()
        .with_default_env()
        .retention(retention)
        .spawn()
}

/// Builds the trace-target filter used when tokio-console is enabled.
pub fn trace_targets_filter() -> Targets {
    Targets::new()
        .with_target("tokio", tracing::Level::TRACE)
        .with_target("runtime", tracing::Level::TRACE)
}