zelos 0.0.2

A distributed tracing system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Zelos - A distributed tracing system
//!
//! This crate provides a unified interface to the Zelos tracing system,
//! re-exporting the main functionality from the individual crates.

pub use zelos_actions as actions;
pub use zelos_proto as proto;
pub use zelos_trace as trace;
pub use zelos_trace_grpc as trace_grpc;

// Re-export commonly used types
pub use zelos_actions::{
    Action, ActionExecuteResult, ActionFn, ActionSchema, ActionsClient, ActionsError,
    ActionsRegistry, ExecuteStatus, FieldBuilder,
};
pub use zelos_trace::{Store, TraceRouter, TraceSink, TraceSource};
pub use zelos_trace_grpc::{publish, subscribe};