bomb 0.1.4

High-performance HTTP and WebSocket stress testing tool
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Metrics collection and reporting for Bomb stress testing tool
//!
//! This module provides a clean, modular approach to metrics:
//! - Individual client metrics tracking
//! - Aggregate metrics collection across all clients
//! - Comprehensive test reporting and analysis

pub mod aggregate;
pub mod client;
pub mod reporting;

// Re-export public types for easier access
pub use aggregate::AggregateMetrics;