feature(web): 新增 Flink 相关查询内容
This commit is contained in:
@@ -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 +
|
||||
'}';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user