feat(web): 增加指标采集进度显示

This commit is contained in:
v-zhangjc9
2024-10-14 10:51:10 +08:00
parent 7efd9129c2
commit fb79468eee
11 changed files with 417 additions and 197 deletions

View File

@@ -0,0 +1,18 @@
package com.lanyuanxiaoyao.service.forest.service;
import com.dtflys.forest.annotation.BaseRequest;
import com.dtflys.forest.annotation.Get;
import com.lanyuanxiaoyao.service.configuration.entity.monitor.MetricsProgress;
import org.eclipse.collections.api.list.ImmutableList;
/**
* 监控指标查询
*
* @author lanyuanxiaoyao
* @date 2024-10-14
*/
@BaseRequest(baseURL = "http://service-monitor")
public interface MonitorService {
@Get("/metrics_control/progress")
ImmutableList<MetricsProgress> progress();
}