Trait zipkin::Report [] [src]

pub trait Report {
    fn report(&self, span: &Span);
}

A reporter consumes Zipkin spans and reports them.

For example, the reporter may log the span information to a file, or send it over the network to a collection service.

Required Methods

Reports a span.

Implementors