From 5f9ed589d4902563a7f283ff860f429adec4e9e1 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 22 Jan 2026 13:44:43 -0800 Subject: [PATCH] Fix macOS dashboard instance variable to only show macOS hosts Use node_memory_wired_bytes (macOS-specific metric) instead of node_uname_info to populate the instance dropdown. This prevents Linux hosts like sifaka from appearing in the macOS dashboard. Co-Authored-By: Claude Opus 4.5 --- .../manifests/grafana-config/dashboards/configmap-macos.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/argocd/manifests/grafana-config/dashboards/configmap-macos.yaml b/argocd/manifests/grafana-config/dashboards/configmap-macos.yaml index aea4192..a9089f0 100644 --- a/argocd/manifests/grafana-config/dashboards/configmap-macos.yaml +++ b/argocd/manifests/grafana-config/dashboards/configmap-macos.yaml @@ -1263,7 +1263,7 @@ data: { "current": {}, "datasource": { "type": "prometheus", "uid": "prometheus" }, - "definition": "label_values(node_uname_info, instance)", + "definition": "label_values(node_memory_wired_bytes, instance)", "hide": 0, "includeAll": false, "label": "Instance", @@ -1271,7 +1271,7 @@ data: "name": "instance", "options": [], "query": { - "query": "label_values(node_uname_info, instance)", + "query": "label_values(node_memory_wired_bytes, instance)", "refId": "StandardVariableQuery" }, "refresh": 1,