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 aggregation;
mod events;
mod timing;
mod ui;

pub(super) use aggregation::{aggregate_snapshots, record_aggregated_sample};
pub(super) use events::{AgentEvent, AgentSnapshot, event_agent_id, handle_agent_event};
pub(super) use timing::{
    DEFAULT_START_AFTER_MS, REPORT_GRACE_SECS, resolve_agent_wait_timeout,
    resolve_heartbeat_check_interval, resolve_sink_interval,
};
pub(super) use ui::update_ui;