MetricAnomalyFeedback type

Represents feedback of whether data points within the time range should be considered anomalies or not.

type MetricAnomalyFeedback = {
  anomalyDetectionConfigurationId?: string
  anomalyDetectionConfigurationSnapshot?: AnomalyDetectionConfiguration
  endTime: Date
  feedbackType: "Anomaly"
  startTime: Date
  value: "AutoDetect" | "Anomaly" | "NotAnomaly"
} & MetricFeedbackCommon