You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable option to allow all values for workload dashboard
Other workload dashboards already allow for the include-all option.
Having this options makes the workload dashboard a way better default
dashboard than the current `Kubernetes / Compute Resources / Namespace
(Pods)` dashboard since it's basically the same, but with the advantage
to also more easily filter for specific workloads inside the namespace.
Signed-off-by: Stefan Andres <[email protected]>
@@ -105,15 +106,15 @@ local var = g.dashboard.variable;
105
106
sum(
106
107
max by (%(clusterLabel)s, %(namespaceLabel)s, pod, container)(node_namespace_pod_container:container_cpu_usage_seconds_total:sum_rate5m{%(clusterLabel)s="$cluster", namespace="$namespace"})
max by (%(clusterLabel)s, %(namespaceLabel)s, pod, container)(kube_pod_container_resource_requests{%(kubeStateMetricsSelector)s, %(clusterLabel)s="$cluster", namespace="$namespace", resource="cpu"})
@@ -123,7 +124,7 @@ local var = g.dashboard.variable;
123
124
sum(
124
125
max by (%(clusterLabel)s, %(namespaceLabel)s, pod, container)(container_memory_working_set_bytes{%(clusterLabel)s="$cluster", namespace="$namespace", container!="", image!=""})
0 commit comments