feat(X-Pack): 定时报告增加失败重试机制 #10171

This commit is contained in:
fit2cloud-chenyw
2024-07-09 12:18:43 +08:00
parent 2c63723464
commit 4faf8ddee7
5 changed files with 46 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ public class ReportCreator implements Serializable {
private Integer rtid;
@JsonSerialize(using= ToStringSerializer.class)
@JsonSerialize(using = ToStringSerializer.class)
private Long rid;
private Integer format;
@@ -53,5 +53,11 @@ public class ReportCreator implements Serializable {
private Long endTime;
private Boolean retryEnable;
private Integer retryLimit;
private Integer retryInterval;
private List<VisualizationReportFilterVO> reportFilter;
}

View File

@@ -54,4 +54,10 @@ public class ReportInfoVO implements Serializable {
private Long startTime;
private Long endTime;
private Boolean retryEnable;
private Integer retryLimit;
private Integer retryInterval;
}