1、适配cpu信息表、容器信息表、挂载点信息表分表。
2、agent增加采集磁盘健康状态。 3、优化磁盘上报数据处理。
This commit is contained in:
+4
-3
@@ -1,7 +1,6 @@
|
||||
package com.tongran.rocketmq.mapper;
|
||||
|
||||
import com.tongran.rocketmq.domain.InitialMountPointInfo;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@@ -64,10 +63,10 @@ public interface InitialMountPointInfoMapper
|
||||
/**
|
||||
* 批量新增挂载点监控信息
|
||||
*
|
||||
* @param list 挂载点监控信息集合
|
||||
* @param initialMountPointInfo 挂载点监控信息集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchInsertInitialMountPointInfo(@Param("list") List<InitialMountPointInfo> list);
|
||||
public int batchInsertInitialMountPointInfo(InitialMountPointInfo initialMountPointInfo);
|
||||
|
||||
/**
|
||||
* 挂载文件系统基础信息
|
||||
@@ -82,4 +81,6 @@ public interface InitialMountPointInfoMapper
|
||||
* @return
|
||||
*/
|
||||
List<Map> getAllMountName(InitialMountPointInfo initialMountPointInfo);
|
||||
|
||||
List<InitialMountPointInfo> selectInitialMountPointInfoListByCondition(InitialMountPointInfo condition);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user