diff --git a/api/internal/logic/core/clustersloadlogic.go b/api/internal/logic/core/clustersloadlogic.go index 8f3ac6c1..c66892c8 100644 --- a/api/internal/logic/core/clustersloadlogic.go +++ b/api/internal/logic/core/clustersloadlogic.go @@ -43,7 +43,7 @@ func (l *ClustersLoadLogic) ClustersLoad(req *types.ClustersLoadReq) (resp *type //} //resp.Data = remoteResp.Data resp = &types.ClustersLoadResp{} - metrics := []string{"cluster_cpu_utilisation", "cluster_cpu_avail", "cluster_cpu_total", "cluster_memory_total", "cluster_memory_avail", "cluster_memory_utilisation", "cluster_memory_utilisation", "cluster_memory_avail", "cluster_memory_total"} + metrics := []string{"cluster_cpu_utilisation", "cluster_cpu_avail", "cluster_cpu_total", "cluster_memory_total", "cluster_memory_avail", "cluster_memory_utilisation", "cluster_disk_utilisation", "cluster_disk_avail", "cluster_disk_total"} result := l.svcCtx.PromClient.GetNamedMetrics(metrics, time.Now(), tracker.ClusterOption{AdapterId: req.AdapterId, ClusterName: req.ClusterName}) resp.Data = result return resp, nil