Datadog · Schema

MonitorState

The current evaluation state of the monitor across all groups

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
groups object Map of monitor group names to their current state information
View JSON Schema on GitHub

JSON Schema

datadog-monitors-monitor-state-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-monitors-monitor-state-schema.json",
  "title": "MonitorState",
  "description": "The current evaluation state of the monitor across all groups",
  "type": "object",
  "properties": {
    "groups": {
      "type": "object",
      "description": "Map of monitor group names to their current state information",
      "additionalProperties": {
        "$ref": "#/components/schemas/MonitorGroupState"
      }
    }
  }
}