From 30e75bf727331335fa461d8423b0cbbb698e38f3 Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Sun, 22 Mar 2026 14:52:54 -0300 Subject: [PATCH] fix(alcyone/grafana): don't replace unknown with 0 on ram panel --- hosts/alcyone/services/grafana/dashboards/hosts.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/alcyone/services/grafana/dashboards/hosts.json b/hosts/alcyone/services/grafana/dashboards/hosts.json index 11047ee8..f17e0304 100644 --- a/hosts/alcyone/services/grafana/dashboards/hosts.json +++ b/hosts/alcyone/services/grafana/dashboards/hosts.json @@ -444,7 +444,7 @@ "pluginVersion": "12.3.1", "targets": [ { - "expr": "sum(node_memory_MemTotal_bytes{instance=\"$hosts\"} - node_memory_MemAvailable_bytes{instance=\"$hosts\"} or vector(0))", + "expr": "sum(node_memory_MemTotal_bytes{instance=\"$hosts\"} - node_memory_MemAvailable_bytes{instance=\"$hosts\"})", "instant": false, "legendFormat": "Used Memory", "range": true,