From 9be87e32ce1b6e35a90e6f5b89241ec54465ec65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 6 Dec 2023 11:13:26 +0100 Subject: [PATCH] nimbus.mainnet: reduce Consul alerts sensitivity 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.mainnet.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ansible/group_vars/nimbus.mainnet.yml b/ansible/group_vars/nimbus.mainnet.yml index 4f5ce13..dffda79 100644 --- a/ansible/group_vars/nimbus.mainnet.yml +++ b/ansible/group_vars/nimbus.mainnet.yml @@ -84,6 +84,11 @@ beacon_node_exec_layer_urls: |- {{ beacon_node_exec_layer_urls_auto if inventory_hostname_short == "linux-01" else (idx % 2 == 0) | ternary(beacon_node_exec_layer_urls_auto, []) }} +# Reduce Consul alerts sensitivity +beacon_node_consul_success_before_passing: 5 +beacon_node_consul_failures_before_warning: 10 +beacon_node_consul_failures_before_critical: 20 + # Periodic resync to save space beacon_node_resync_enabled: true beacon_node_resync_timer_enabled: '{{ (idx % 2 == 1) and not node.get("public_api") }}'