From 7e2dd1c69ecf9b93ab4cfd21156ce415f66c4b16 Mon Sep 17 00:00:00 2001
From: GJS <163113183+homelab-alpha@users.noreply.github.com>
Date: Mon, 2 Jun 2025 14:46:05 +0200
Subject: [PATCH] fix: Adjusted `` thresholds for CPU and Memory usage
display (#3940)
---
assets/components/ContainerTable.vue | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/assets/components/ContainerTable.vue b/assets/components/ContainerTable.vue
index 4814ea4d..e51309d8 100644
--- a/assets/components/ContainerTable.vue
+++ b/assets/components/ContainerTable.vue
@@ -83,9 +83,9 @@
class="flex-1 overflow-hidden rounded-3xl"
min="0"
max="100"
- low="40"
+ low="60"
optimum="0"
- high="70"
+ high="80"
:value="Math.min(container.movingAverage.cpu, 100)"
>
{{ container.movingAverage.cpu.toFixed(0) }}%
@@ -97,9 +97,9 @@
class="flex-1 overflow-hidden rounded-3xl"
min="0"
max="100"
- low="40"
+ low="70"
optimum="0"
- high="70"
+ high="90"
:value="container.movingAverage.memory"
>
{{ container.movingAverage.memory.toFixed(0) }}%