From dfca2b510bcaa2bc92ed2769cdb3ebf6af9310cb Mon Sep 17 00:00:00 2001 From: sakridge Date: Tue, 15 Oct 2019 11:43:52 -0700 Subject: [PATCH] Lower shred/receiver stats (#6365) too many messages --- core/src/replay_stage.rs | 2 +- core/src/shred.rs | 2 +- core/src/streamer.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/replay_stage.rs b/core/src/replay_stage.rs index 56409392b7..a15c2a49ab 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -174,7 +174,7 @@ impl ReplayStage { if let Some(new_leader) = leader_schedule_cache.slot_leader_at(next_slot, Some(&bank)) { - datapoint_info!( + datapoint_debug!( "replay_stage-new_leader", ("slot", next_slot, i64), ("leader", new_leader.to_string(), String), diff --git a/core/src/shred.rs b/core/src/shred.rs index e160a00c99..39085ab236 100644 --- a/core/src/shred.rs +++ b/core/src/shred.rs @@ -405,7 +405,7 @@ impl Shredder { let elapsed = now.elapsed().as_millis(); - datapoint_info!( + datapoint_debug!( "shredding-stats", ("slot", self.slot as i64, i64), ("num_data_shreds", data_shreds.len() as i64, i64), diff --git a/core/src/streamer.rs b/core/src/streamer.rs index e69240c7f6..edb6d6c579 100644 --- a/core/src/streamer.rs +++ b/core/src/streamer.rs @@ -47,7 +47,7 @@ fn recv_loop( } } if recv_count > 1024 { - datapoint_info!( + datapoint_debug!( "receiver-stats", ("received", recv_count as i64, i64), ("call_count", i64::from(call_count), i64),