Class AggregatedMetric

java.lang.Object
org.apache.flink.runtime.rest.messages.job.metrics.AggregatedMetric

public class AggregatedMetric extends Object
Response type for aggregated metrics. Contains the metric name and optionally the sum, average, minimum and maximum.
  • Constructor Details

    • AggregatedMetric

      public AggregatedMetric(String id, @Nullable Double min, @Nullable Double max, @Nullable Double avg, @Nullable Double sum, @Nullable Double skew)
    • AggregatedMetric

      public AggregatedMetric(String id)
  • Method Details