From c1919febc28bc0eddd6100ce189abee7fad64c4c Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Thu, 4 Jun 2026 21:40:07 -0400 Subject: [PATCH] =?UTF-8?q?Monitor:=20fix=20memory=20bar=20ZFS=20field=20n?= =?UTF-8?q?ame=20zfs=5Fkb=20=E2=86=92=20arc=5Fkb?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Plugin/unraid/pages/monitor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugin/unraid/pages/monitor.php b/Plugin/unraid/pages/monitor.php index 3eb00a7..f6b48b5 100644 --- a/Plugin/unraid/pages/monitor.php +++ b/Plugin/unraid/pages/monitor.php @@ -428,7 +428,7 @@ function vvRenderMemory(mem) { `; html += vvMemRow('System', mem.system_kb ?? 0, total, VV_MEM_COLORS.system) + vvMemRow('VM', mem.vm_kb ?? 0, total, VV_MEM_COLORS.vm) - + vvMemRow('ZFS', mem.zfs_kb ?? 0, total, VV_MEM_COLORS.zfs) + + vvMemRow('ZFS', mem.arc_kb ?? 0, total, VV_MEM_COLORS.zfs) + vvMemRow('Docker', mem.docker_kb ?? 0, total, VV_MEM_COLORS.docker) + vvMemRow('Free', mem.free_kb ?? 0, total, VV_MEM_COLORS.free);