Skip to content
New issue

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

Simplify span-duration-counting tracing layer #61

Closed
langston-barrett opened this issue Sep 15, 2023 · 0 comments · Fixed by #71
Closed

Simplify span-duration-counting tracing layer #61

langston-barrett opened this issue Sep 15, 2023 · 0 comments · Fixed by #71
Assignees

Comments

@langston-barrett
Copy link
Collaborator

Here's a simpler implementation of 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())
            }
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant