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
mod buckets;
mod latency;
mod rps;
mod util;

pub use buckets::{
    plot_aggregated_average_response_time, plot_aggregated_cumulative_error_rate,
    plot_aggregated_cumulative_successful_requests, plot_aggregated_cumulative_total_requests,
};
pub use latency::plot_aggregated_latency_percentiles;
pub use rps::plot_aggregated_requests_per_second;