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
13
14
15
16
mod bounds;
mod records;
mod runner;
mod snapshots;
pub(crate) mod state;
pub(crate) mod summary;
pub(crate) mod ui;

#[cfg(test)]
mod tests;

pub(crate) use records::read_records_from_path;
pub(crate) use runner::run_replay;
use runner::window_slice;
pub(crate) use state::SnapshotMarkers;
pub(crate) use ui::build_ui_data_with_config;