优化交换机数据采集、脚本策略、agent更新优化、注册增加路由信息
This commit is contained in:
@@ -6,6 +6,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 服务器脚本策略对象 rm_deployment_policy
|
||||
@@ -89,4 +90,16 @@ public class RmDeploymentPolicy extends BaseEntity
|
||||
private String scriptPath;
|
||||
/** 业务脚本参数 */
|
||||
private String defaultParams;
|
||||
/** 不在线数量 */
|
||||
private Integer offlineNum;
|
||||
/** 执行成功数量 */
|
||||
private Integer sucessNum;
|
||||
/** 执行失败数量 */
|
||||
private Integer failNum;
|
||||
/** 不在线服务器clientId集合 */
|
||||
private List<String> offlineClientIds;
|
||||
/** 执行成功clientId集合 */
|
||||
private List<String> sucessClientIds;
|
||||
/** 执行失败clientIdji和 */
|
||||
private List<String> failClientIds;
|
||||
}
|
||||
|
||||
@@ -59,5 +59,7 @@ public class RmNetworkInterface extends BaseEntity
|
||||
private String gateway;
|
||||
/** 绑定ip 1业务IP,2管理ip */
|
||||
private String bindIp;
|
||||
/** 是否为新信息 */
|
||||
private String newFlag;
|
||||
|
||||
}
|
||||
|
||||
@@ -55,4 +55,10 @@ public class RmResourceRemote extends BaseEntity
|
||||
private String connectionMethod;
|
||||
/** 脚本执行结果 */
|
||||
private String commandResult;
|
||||
/** 客户端id */
|
||||
private String clientId;
|
||||
/** 执行结果标识(0 失败 1成功) */
|
||||
private Integer resultFlag;
|
||||
/** 脚本id */
|
||||
private Long scriptId;
|
||||
}
|
||||
|
||||
@@ -4,6 +4,8 @@ import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ServerScriptPolicyVo {
|
||||
/** 服务器脚本策略id */
|
||||
private String scriptId;
|
||||
/** 策略名称 */
|
||||
private String policyName;
|
||||
/** 外网Http(s)地址 */
|
||||
|
||||
Reference in New Issue
Block a user