feature(web): 新增 Flink 相关查询内容

This commit is contained in:
2023-05-05 18:54:52 +08:00
parent c8cb1a1c40
commit eabe69a30d
5 changed files with 174 additions and 32 deletions

View File

@@ -25,7 +25,8 @@ public class FlinkVertex {
private Integer maxParallelism;
private Long now;
private Timestamps timestamps;
private ImmutableList<FlinkVertex> vertices;
@JsonAlias("vertices")
private ImmutableList<FlinkVertex> children;
private Metrics metrics;
public String getJid() {
@@ -72,8 +73,8 @@ public class FlinkVertex {
return timestamps;
}
public ImmutableList<FlinkVertex> getVertices() {
return vertices;
public ImmutableList<FlinkVertex> getChildren() {
return children;
}
public Metrics getMetrics() {
@@ -320,7 +321,7 @@ public class FlinkVertex {
", maxParallelism=" + maxParallelism +
", now=" + now +
", timestamps=" + timestamps +
", vertices=" + vertices +
", children=" + children +
", metrics=" + metrics +
'}';
}