Lower default monitoring interval to 15s
Faults are also reported on the monitoring interval, so 60s seems like too long. Lower this to 15 seconds by default instead.
This commit is contained in:
parent
9c2b1b29ee
commit
3dc48c1783
|
@ -284,7 +284,7 @@ def get_parsed_configuration(config_file):
|
|||
config_timer = {
|
||||
"vm_shutdown_timeout": int(o_timer.get("vm_shutdown_timeout", 180)),
|
||||
"keepalive_interval": int(o_timer.get("keepalive_interval", 5)),
|
||||
"monitoring_interval": int(o_timer.get("monitoring_interval", 60)),
|
||||
"monitoring_interval": int(o_timer.get("monitoring_interval", 15)),
|
||||
}
|
||||
config = {**config, **config_timer}
|
||||
|
||||
|
|
|
@ -216,7 +216,7 @@ timer:
|
|||
keepalive_interval: 5
|
||||
|
||||
# Monitoring interval (seconds)
|
||||
monitoring_interval: 60
|
||||
monitoring_interval: 15
|
||||
|
||||
# Fencing configuration
|
||||
fencing:
|
||||
|
|
Loading…
Reference in New Issue