balter 0.8.0

A load/stress testing framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// User provided hints for setting autoscaling parameters.
///
/// Balter attempts to find the optimal values for all parameters, however sometimes the control
/// loops can take a while to stabalize. These are user-provided hints (see [crate::Scenario#method.hint])
pub enum Hint {
    /// Provide the starting concurrency value. Useful for Scenarios with low TPS (which Balter can
    /// take a long time to stablize on).
    Concurrency(usize),

    /// Starting TPS for Balter to use.
    Tps(u32),

    /// Kp value for the Latency Controller proportional control loop
    /// Defaults to 0.9
    LatencyController(f64),
}