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
mod basic;
mod breakdown;
mod latency;

pub use basic::{
    plot_average_response_time_from_buckets, plot_cumulative_error_rate_from_buckets,
    plot_cumulative_successful_requests_from_buckets, plot_cumulative_total_requests_from_buckets,
    plot_inflight_requests_from_counts, plot_requests_per_second_from_counts,
    plot_timeouts_per_second_from_counts,
};
pub use breakdown::{
    plot_error_rate_breakdown_from_counts, plot_status_code_distribution_from_counts,
};
pub use latency::{LatencyPercentilesSeries, plot_latency_percentiles_series};