From 02359722146a1b086b47f3c6803eb620076f42d8 Mon Sep 17 00:00:00 2001 From: George Aeillo Date: Wed, 13 May 2026 12:58:34 -0400 Subject: [PATCH] First pass of adding fix for fixing issue where namespaces for managed clusters were appearing twice in cpu quota table Signed-off-by: George Aeillo --- .../grafana/platform/dash-k8s-compute-resources-cluster.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operators/multiclusterobservability/manifests/base/grafana/platform/dash-k8s-compute-resources-cluster.yaml b/operators/multiclusterobservability/manifests/base/grafana/platform/dash-k8s-compute-resources-cluster.yaml index aebb421b11..c8c5b93750 100644 --- a/operators/multiclusterobservability/manifests/base/grafana/platform/dash-k8s-compute-resources-cluster.yaml +++ b/operators/multiclusterobservability/manifests/base/grafana/platform/dash-k8s-compute-resources-cluster.yaml @@ -966,7 +966,7 @@ data: "step": 10 }, { - "expr": "namespace_workload_pod:kube_pod_owner:relabel:avg{cluster=\"$cluster\"}", + "expr": "sum(namespace_workload_pod:kube_pod_owner:relabel:avg{cluster=\"$cluster\"}) by (namespace)", "format": "table", "hide": false, "instant": true, @@ -977,7 +977,7 @@ data: "step": 10 }, { - "expr": "node_namespace_pod_container:container_cpu_usage_seconds_total:sum{cluster=\"$cluster\"}", + "expr": "sum(node_namespace_pod_container:container_cpu_usage_seconds_total:sum{cluster=\"$cluster\"}) by (namespace)", "format": "table", "instant": true, "intervalFactor": 2,