- Auth stack: fold cert monitor into Auth Stack page as fourth tab (Certs); remove standalone cert page and top-level tab - cert_monitor.sh: write JSON status cache to State_Files/cert_status.json after each run; expose per-domain days/expiry via _CERT_DAYS/_CERT_EXPIRY globals - api/cert.php: new — serves cached cert status; falls back to configured domains as UNKN when no cache exists; POST action=run triggers live check - arrs db fallbacks: vv_arr_cleanup_stats/discovery_stats/recovery_stats now read from data/*.db files when log JSON files don't yet exist - config.php vv_conf_vars(): unescape bash \$ → $ so passwords with dollar signs read correctly from conf files - host1.conf: fill in HOST1_NPM_USER/PASS and HOST1_LLDAP_USER/PASS - Partnership adapter pattern: Unraid-specific container logic extracted to Plugin/unraid/Partnership/; platform-agnostic structure stays in Partnership/ - First-run wizard: uniform multi-step flow for all hosts; HOST2 pull moved to checklist; auto SSH keygen and API key creation on save - api/checklist.php: live setup checklist with pull_master action - Fullscreen toggle: hide Unraid header/menu; state persists via localStorage
57 lines
2.4 KiB
PHP
57 lines
2.4 KiB
PHP
<?php
|
|
// API cache writer — runs every minute via Varaverk scheduler.
|
|
// Builds monitor + arrs payloads and writes them to /tmp/vv_cache/ so page
|
|
// loads can serve instantly from the file instead of making live HTTP calls.
|
|
//
|
|
// Called by api_cache_writer.sh (bash wrapper required by the scheduler).
|
|
|
|
$_base = dirname(__DIR__);
|
|
require_once $_base . '/include/monitor.php';
|
|
require_once $_base . '/include/vms.php';
|
|
require_once $_base . '/include/docker_folders.php';
|
|
require_once $_base . '/include/arrs.php';
|
|
|
|
$t = microtime(true);
|
|
|
|
// ── Monitor payload ───────────────────────────────────────────────────────────
|
|
// Call vv_api_data() once — result is static-cached for the rest of this process.
|
|
vv_api_data();
|
|
|
|
$monitor = [
|
|
'system' => vv_system_info(),
|
|
'fallback' => vv_fallback_state(),
|
|
'fallback_active' => vv_fallback_active(),
|
|
'partner' => vv_partner_state(),
|
|
'resources' => vv_system_resources(),
|
|
'cpu' => vv_cpu_per_core(),
|
|
'mem' => vv_memory_breakdown(),
|
|
'net' => vv_network_stats(),
|
|
'gpu' => vv_gpu_stats(),
|
|
'gpu_procs' => vv_gpu_processes(),
|
|
'containers' => vv_docker_containers(),
|
|
'stopped' => vv_docker_stopped(),
|
|
'transcode' => vv_transcode_sessions(),
|
|
'ups' => vv_ups_stats(),
|
|
'parity' => vv_parity_status(),
|
|
'storage' => vv_storage_pools(),
|
|
'array_disks' => vv_array_disks(),
|
|
'disk_io' => vv_disk_io_rates(),
|
|
'watchdog' => vv_watchdog_summary(),
|
|
'scripts' => vv_scripts_status(),
|
|
'rsync' => vv_rsync_status(),
|
|
'thresholds' => vv_disk_thresholds(),
|
|
'vms' => vv_get_vms(),
|
|
'docker_folders' => vv_get_docker_folders(),
|
|
'remote_hosts' => vv_remote_hosts_stats(),
|
|
'_api_status' => vv_api_get_status(),
|
|
'ts' => time(),
|
|
];
|
|
vv_cache_write('monitor', $monitor);
|
|
|
|
// ── Arrs payload ──────────────────────────────────────────────────────────────
|
|
$arrs = vv_arrs_all();
|
|
vv_cache_write('arrs', $arrs);
|
|
|
|
$elapsed = round((microtime(true) - $t) * 1000);
|
|
echo "Cache written in {$elapsed}ms — monitor + arrs\n";
|