Class MetricEnrichedSeriesData

java.lang.Object
com.azure.ai.metricsadvisor.models.MetricEnrichedSeriesData

public final class MetricEnrichedSeriesData extends Object
Enriched time series data which includes additional service computed values for the time series data points.
  • Constructor Details

    • MetricEnrichedSeriesData

      public MetricEnrichedSeriesData()
  • Method Details

    • getSeriesKey

      public DimensionKey getSeriesKey()
      Gets the key of the time series.
      Returns:
      The time series key.
    • getTimestamps

      public List<OffsetDateTime> getTimestamps()
      Gets the timestamps of the data points in the time series.
      Returns:
      The timestamps.
    • getMetricValues

      public List<Double> getMetricValues()
      Gets the values of the data points in the time series.
      Returns:
      The values.
    • isAnomaly

      public List<Boolean> isAnomaly()
      Gets the anomaly status of the data points in the time series.
      Returns:
      The anomaly statuses.
    • getPeriods

      public List<Integer> getPeriods()
      Gets the periods calculated for the data points in the time series.
      Returns:
      The periods.
    • getExpectedMetricValues

      public List<Double> getExpectedMetricValues()
      Gets the expected values of the data points calculated by the smart detector.
      Returns:
      The expected values.
    • getLowerBoundaryValues

      public List<Double> getLowerBoundaryValues()
      Gets the lower boundary values of the data points calculated by smart detector.
      Returns:
      The lower bound values.
    • getUpperBoundaryValues

      public List<Double> getUpperBoundaryValues()
      Gets the upper boundary values of the data points calculated by smart detector.
      Returns:
      The upper bound values.