strest 0.1.10

Blazing-fast async HTTP load tester in Rust - lock-free design, real-time stats, distributed runs, and optional chart exports for high-load API testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod events;
mod finalize;
mod setup;

use crate::args::TesterArgs;
use crate::error::AppResult;

pub(super) async fn run_controller_auto(args: &TesterArgs) -> AppResult<()> {
    let setup = setup::prepare_auto_run(args).await?;
    let outcome = events::collect_auto_run_events(args, setup).await;
    finalize::finalize_auto_run(args, outcome).await
}