sentinel-core 0.1.3

The flow sentinel of your microservices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The `hotspot` mod provides implementation of "hot-spot" (frequent) parameter flow control.

pub mod cache;
pub mod concurrency_stat_slot;
pub mod param_metric;
pub mod rule;
pub mod rule_manager;
pub mod slot;
pub mod traffic_shaping;

pub use cache::*;
pub use concurrency_stat_slot::*;
pub use param_metric::*;
pub use rule::*;
pub use rule_manager::*;
pub use slot::*;
pub use traffic_shaping::*;