Function queue_wait_percentile_ms
Source pub fn queue_wait_percentile_ms(
lambda: f64,
mu: f64,
c: u32,
quantile: f64,
) -> Result<f64, PoolsimError>
Expand description
Computes queue-wait percentile (milliseconds) for an M/M/c queue.
quantile is clamped into [0, 1].
ยงErrors
Returns the same errors as erlang_c and saturated errors when the
tail rate becomes non-positive.