diff --git a/client/src/components/nodesPanel.js b/client/src/components/nodesPanel.js index 81f89e6..45b2e6f 100644 --- a/client/src/components/nodesPanel.js +++ b/client/src/components/nodesPanel.js @@ -115,7 +115,7 @@ function getPercentDisplay(node, metrics, resource) { } function getResourcePercentDisplay(node, pods, resource, type) { - const used = getNodeResourceValue(node, pods, resource, type); + const used = getNodeResourceValue(node, pods, resource, type, ["Running"]); return percent(node, used, resource); }