AWS CloudWatch · Schema

AnomalyDetector

An anomaly detection model associated with a particular CloudWatch metric.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
Namespace string The namespace of the metric associated with the anomaly detection model.
MetricName string The name of the metric associated with the anomaly detection model.
Dimensions array The metric dimensions associated with the anomaly detection model.
Stat string The statistic associated with the anomaly detection model.
StateValue string The current status of the anomaly detector model.
View JSON Schema on GitHub

JSON Schema

cloudwatch-anomaly-detector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AnomalyDetector",
  "type": "object",
  "description": "An anomaly detection model associated with a particular CloudWatch metric.",
  "properties": {
    "Namespace": {
      "type": "string",
      "description": "The namespace of the metric associated with the anomaly detection model."
    },
    "MetricName": {
      "type": "string",
      "description": "The name of the metric associated with the anomaly detection model."
    },
    "Dimensions": {
      "type": "array",
      "description": "The metric dimensions associated with the anomaly detection model."
    },
    "Stat": {
      "type": "string",
      "description": "The statistic associated with the anomaly detection model."
    },
    "StateValue": {
      "type": "string",
      "description": "The current status of the anomaly detector model."
    }
  }
}