udp load test: rename config key peer_histogram to extra_statistics

This commit is contained in:
Joakim Frostegård 2024-02-06 18:52:12 +01:00
parent c97a3a7996
commit b16ab82699
3 changed files with 6 additions and 6 deletions

View file

@ -25,8 +25,8 @@ pub struct Config {
///
/// 0 = include whole run
pub summarize_last: usize,
/// Display data on number of peers per info hash
pub peer_histogram: bool,
/// Display extra statistics
pub extra_statistics: bool,
pub network: NetworkConfig,
pub requests: RequestConfig,
#[cfg(feature = "cpu-pinning")]
@ -41,7 +41,7 @@ impl Default for Config {
workers: 1,
duration: 0,
summarize_last: 0,
peer_histogram: true,
extra_statistics: true,
network: NetworkConfig::default(),
requests: RequestConfig::default(),
#[cfg(feature = "cpu-pinning")]