From 878a2ce734efd34ddeebea2112bca0e767e20187 Mon Sep 17 00:00:00 2001 From: Ashwin Sekar Date: Wed, 7 Feb 2024 22:09:14 +0000 Subject: [PATCH] validator: include waited_for_supermajority in startup metric --- core/src/validator.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/validator.rs b/core/src/validator.rs index a90044881ee458..f1304db171349d 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -1366,6 +1366,8 @@ impl Validator { ("id", id.to_string(), String), ("version", solana_version::version!(), String), ("cluster_type", genesis_config.cluster_type as u32, i64), + ("waited_for_supermajority", waited_for_supermajority, bool), + ("expected_shred_version", config.expected_shred_version, Option), ); *start_progress.write().unwrap() = ValidatorStartProgress::Running;