Coverage and settings above the chat, tier delays and the probe target alongside them, coverage in three columns

This commit is contained in:
Gmer4Lfe
2026-08-22 01:43:07 -04:00
parent ce613bcf9d
commit e5f4ede3f2
2 changed files with 113 additions and 34 deletions
+9
View File
@@ -356,6 +356,15 @@ function vv_fb_all(): array {
'handback_req' => $handbackReq,
'check_interval' => $checkInterval,
'suspend_after' => $suspendAfter,
// Tier delays are per-host and live in this host's own conf, not master.conf — the save
// path has to name the right file per field or the write is refused as an absent key.
'my_conf' => vv_detect_host() . '.conf',
'tier_delays' => [
'tier2' => (int)(vv_fb_scalar($myRaw, strtoupper($currentHost) . '_TIER2_DELAY') ?: 240),
'tier3' => (int)(vv_fb_scalar($myRaw, strtoupper($currentHost) . '_TIER3_DELAY') ?: 720),
'tier4' => (int)(vv_fb_scalar($myRaw, strtoupper($currentHost) . '_TIER4_DELAY') ?: 1440),
],
'external_ip' => vv_fb_scalar($masterRaw, 'EXTERNAL_IP'),
'nodes' => $nodes,
];
}