We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's a simpler implementation of NanoCountLayer:
NanoCountLayer
use std::time::{Duration, SystemTime}; use tracing::{debug, Id, Subscriber}; use tracing_subscriber::{layer::Context, registry::LookupSpan, Layer}; #[derive(Debug, Default)] pub(crate) struct MilliCountLayer; impl<S> Layer<S> for MilliCountLayer where S: Subscriber + for<'lookup> LookupSpan<'lookup>, { fn on_enter(&self, id: &Id, ctx: Context<'_, S>) { if let Some(span) = ctx.span(id) { span.extensions_mut().insert(SystemTime::now()); } } fn on_exit(&self, id: &Id, ctx: Context<'_, S>) { if let Some(span) = ctx.span(id) { if let Some(time) = span.extensions().get::<SystemTime>() { let elapsed = time.elapsed().unwrap_or(Duration::ZERO); debug!("{}: {}ms", span.name(), elapsed.as_millis()) } } } }
The text was updated successfully, but these errors were encountered:
langston-barrett
Successfully merging a pull request may close this issue.
Here's a simpler implementation of
NanoCountLayer
:The text was updated successfully, but these errors were encountered: