From e4b037d02caccfc7baa20346b8437b11c6902bf8 Mon Sep 17 00:00:00 2001 From: mirivlad Date: Sun, 26 Apr 2026 16:53:05 +0800 Subject: [PATCH] Exclude net_*, temp_*, disk_used_* from main metrics section --- templates/servers/detail.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/servers/detail.twig b/templates/servers/detail.twig index 090643a..a159c75 100755 --- a/templates/servers/detail.twig +++ b/templates/servers/detail.twig @@ -33,7 +33,7 @@
{% set visibleMetrics = displayMetrics %} {% for metricName, metricData in metrics %} - {% if metricName in visibleMetrics %} + {% if metricName in visibleMetrics and not (metricName starts with 'temp_') and not (metricName starts with 'net_in_') and not (metricName starts with 'net_out_') and not (metricName starts with 'disk_used_') %}