From fa27ce76a334340ff2addee4a96a13ba350bf150 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Thu, 26 Jan 2023 14:18:52 +0100 Subject: [PATCH] vmon: set details mode to default off The "on" default for validator monitor details incurs a heavy performance penalty on large-validator setups - this may cause excess memory usage or slowdowns when metrics are queried - this PR changes the default to off, as was intended for the 23.1.0 release. --- beacon_chain/conf.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_chain/conf.nim b/beacon_chain/conf.nim index ab6e63927..5860aa2e8 100644 --- a/beacon_chain/conf.nim +++ b/beacon_chain/conf.nim @@ -560,7 +560,7 @@ type validatorMonitorDetails* {. desc: "Publish detailed metrics for each validator individually - may incur significant overhead with large numbers of validators" - defaultValue: true + defaultValue: false name: "validator-monitor-details" .}: bool validatorMonitorTotals* {.