balter 0.6.2

A load/stress testing framework.
Documentation
1
2
3
4
5
6
7
8
9
/// 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),
}