holesky,mainnet,sepolia: lower consul sensitivity
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
d1d762a686
commit
60dd11a88e
|
@ -75,3 +75,11 @@ beacon_node_build_nim_flags: >-
|
|||
|
||||
# Peers
|
||||
beacon_node_max_peers: 320
|
||||
|
||||
# VC inherits Consul settings from BN
|
||||
validator_client_consul_check_disabled: '{{ beacon_node_consul_check_disabled }}'
|
||||
validator_client_consul_check_interval: '{{ beacon_node_consul_check_interval }}'
|
||||
validator_client_consul_check_timeout: '{{ beacon_node_consul_check_timeout }}'
|
||||
validator_client_consul_success_before_passing: '{{ beacon_node_consul_success_before_passing }}'
|
||||
validator_client_consul_failures_before_warning: '{{ beacon_node_consul_failures_before_warning }}'
|
||||
validator_client_consul_failures_before_critical: '{{ beacon_node_consul_failures_before_critical }}'
|
||||
|
|
|
@ -116,9 +116,11 @@ beacon_node_rest_port: '{{ 9300 + idx|int + 1 }}'
|
|||
beacon_node_rest_address: '0.0.0.0'
|
||||
|
||||
# Reduce Consul alerts sensitivity
|
||||
beacon_node_consul_success_before_passing: 1
|
||||
beacon_node_consul_failures_before_warning: 2
|
||||
beacon_node_consul_failures_before_critical: 60
|
||||
beacon_node_consul_check_interval: '60s'
|
||||
beacon_node_consul_check_timeout: '10s'
|
||||
beacon_node_consul_success_before_passing: 360 # 6h
|
||||
beacon_node_consul_failures_before_warning: 720 # 12h
|
||||
beacon_node_consul_failures_before_critical: 1440 # 24h
|
||||
|
||||
# Validator Client -------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -89,9 +89,11 @@ beacon_node_exec_layer_urls: |-
|
|||
else (idx % 2 == 0) | ternary(beacon_node_exec_layer_urls_all, []) }}
|
||||
|
||||
# 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
|
||||
beacon_node_consul_check_interval: '60s'
|
||||
beacon_node_consul_check_timeout: '10s'
|
||||
beacon_node_consul_success_before_passing: 60 # 1h
|
||||
beacon_node_consul_failures_before_warning: 120 # 2h
|
||||
beacon_node_consul_failures_before_critical: 180 # 3h
|
||||
|
||||
# Periodic resync to save space
|
||||
beacon_node_resync_enabled: true
|
||||
|
|
|
@ -56,6 +56,12 @@ beacon_node_listening_port: '{{ 9000 + idx|int + 11 }}'
|
|||
beacon_node_metrics_port: '{{ 9200 + idx|int + 11 }}'
|
||||
beacon_node_rest_port: '{{ 9300 + idx|int + 11 }}'
|
||||
beacon_node_rest_address: '0.0.0.0'
|
||||
# Reduce Consul alerts sensitivity
|
||||
beacon_node_consul_check_interval: '60s'
|
||||
beacon_node_consul_check_timeout: '10s'
|
||||
beacon_node_consul_success_before_passing: 60 # 1h
|
||||
beacon_node_consul_failures_before_warning: 360 # 6h
|
||||
beacon_node_consul_failures_before_critical: 720 # 12h
|
||||
|
||||
# Validator Client
|
||||
validator_client_service_name: 'validator-client-{{ validator_client_network }}-{{ node.branch }}'
|
||||
|
|
|
@ -40,27 +40,27 @@
|
|||
|
||||
- name: infra-role-consul-service
|
||||
src: git@github.com:status-im/infra-role-consul-service.git
|
||||
version: 4d7c9c606f5e039a22c34ba93961d05056c0e002
|
||||
version: d62993069bd045edade5d5fd90c098655089db85
|
||||
scm: git
|
||||
|
||||
- name: infra-role-beacon-node-linux
|
||||
src: git@github.com:status-im/infra-role-beacon-node-linux.git
|
||||
version: 0b41cfe3b14cc47818a1a1a9e53bae732079e84f
|
||||
version: 91c2fe1afa845fbae87d70bccd09dc098db6dc04
|
||||
scm: git
|
||||
|
||||
- name: infra-role-beacon-node-windows
|
||||
src: git@github.com:status-im/infra-role-beacon-node-windows.git
|
||||
version: 51bd279d0ffd26933057bff854a6c7b4ebb72ae3
|
||||
version: 1ec3d72aaef35ddd1bc52ad6a41f51353ff78338
|
||||
scm: git
|
||||
|
||||
- name: infra-role-beacon-node-macos
|
||||
src: git@github.com:status-im/infra-role-beacon-node-macos.git
|
||||
version: 18f11473e3196d2c8cac893988eb9cd0cd255fbc
|
||||
version: 72e9ec63c029304fad9f2b77d4d559ae76d0d949
|
||||
scm: git
|
||||
|
||||
- name: infra-role-validator-client
|
||||
src: git@github.com:status-im/infra-role-validator-client.git
|
||||
version: 87f6be288c96d2b956b6650b44f4e9dfa6ff2d2b
|
||||
version: aaf86e765ab8024bcc359e26d72f7767dc24ab3d
|
||||
scm: git
|
||||
|
||||
- name: infra-role-nimbus-eth1
|
||||
|
|
Loading…
Reference in New Issue