Was this helpful?
Get the per-minute trend of CPU usage by state (User, System, Steal, Nice, Irq, Softirq, iowait, Idle) for cluster nodes.
OK
해당 클러스터, 노드의 타임스탬프별 CPU 사용률
시간 당 타임스탬프
const response = await fetch('/v1/monitoring-nodes/metric/cpu-usage-by-mode/result/transition?clusterIds=text&start=text&end=text', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "metrics": { "cluster": "thingcluster", "mode": "softirq", "node": "apps-gpu-v100" }, "samples": [ 0.00097, 0.00096, 0.00088 ], "timestamps": [ 1685620800, 1685620860, 1685620920 ], "values": null }, { "metrics": { "cluster": "thingcluster", "mode": "steal", "node": "apps-gpu-v100" }, "samples": [ 0, 0, 0 ], "timestamps": [ 1685620800, 1685620860, 1685620920 ], "values": null } ]