holochain_tracing 0.0.13

abstraction for distributed tracing choices
Documentation
extern crate backtrace;
extern crate rustracing;
extern crate rustracing_jaeger;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate shrinkwraprs;
#[macro_use]
extern crate log;

pub mod channel;
mod span;
mod span_context;
mod span_wrap;
mod stack;
pub mod tracer_console;
pub mod tracer_network;

pub use rustracing::{sampler::*, tag::Tag};
pub use rustracing_jaeger::{reporter::JaegerCompactReporter as Reporter, Tracer};
pub use span::{null_tracer, test_span, HSpan as Span};
pub use span_context::{EncodedSpanContext, HSpanContext as SpanContext};
pub use span_wrap::SpanWrap;
pub use stack::{is_empty, push_span, push_span_with, with_top};