From aaa3c437a9bc23e5be854940990ce10d91f2bef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 29 Feb 2024 02:31:01 +0100 Subject: [PATCH] nimbus.holesky: lower limit for detailed val metrics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/nimbus.holesky.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/group_vars/nimbus.holesky.yml b/ansible/group_vars/nimbus.holesky.yml index 6a3e227..8ca05e6 100644 --- a/ansible/group_vars/nimbus.holesky.yml +++ b/ansible/group_vars/nimbus.holesky.yml @@ -89,7 +89,7 @@ beacon_node_nim_commit: '{{ node.get("nim_commit", "") }}' beacon_node_validator_monitor_auto: true beacon_node_validator_monitor_details: >- {{ (node.public_api is not defined or not node.public_api) - and (node.end is defined and (node.end - node.start) <= 64) }} + and (node.end is defined and (node.end - node.start) < 10) }} # Execution layer Enginer API beacon_node_exec_layer_urls: ['http://localhost:{{ exec_layer_authrpc_port }}'] beacon_node_exec_layer_jwt_secret: '{{ geth_authrpc_jwtsecret | mandatory }}'