Get the per-minute trend of the overall network usage in the cluster, categorized by inbound and outbound.
OK
대상 메트릭
타임스탬프별 네트워크 사용률(ex. make-percentage=1을 파라미터 값으로 요청 시, 실제 사용률/100이 samples의 데이터가 된다.)
시간 당 타임스탬프
const response = await fetch('/v1/monitoring-clusters/metric/network/result/transition?clusterIds=text&start=text&end=text', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "metrics": { "cluster": "thingcluster", "measure": "inbound" }, "samples": [ 3175670.24444, 3497435.7, 3347020 ], "timestamps": [ 1685620800, 1685620860, 1685620920 ], "values": null }, { "metrics": { "cluster": "thingcluster", "measure": "outbound" }, "samples": [ 3543429.77778, 3879819.71111, 3899043.1 ], "timestamps": [ 1685620800, 1685620860, 1685620920 ], "values": null } ]