etdl-core 0.1.0

ETDL runtime library: BranchMonitor, retry, SLA anomaly alerting, chaos injection, telemetry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod chaos;
pub mod monitor;
pub mod retry;
pub mod sla;
pub mod telemetry;

pub use monitor::BranchMonitor;
pub use retry::{BackoffStrategy, RetryPolicy};
pub use sla::SlaTracker;
pub use chaos::ChaosController;
pub use telemetry::{
    inject_traceparent, Error as WorkflowError,
};