Skip to main content
FuseFuse
IntegrationsDatadogActions

Create Datadog monitor

Create a monitor with the curated payload shape. Requires monitors_write. Unsafe because Datadog does not document create replay idempotency.

Agent markdown

monitors.create · Datadog · v1

Details

Risk
Write
Idempotency
Unsafe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=false, destructive=false, idempotent=false, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
namestringYesminLength 1; maxLength 200
typestringYesenum metric alert | query alert | service check | event-v2 alert
querystringYesminLength 1; maxLength 4096
messagestringYesmaxLength 4000
tagsarray<string>NomaxItems 100
tags[]stringYesminLength 1; maxLength 200
priorityintegerNominimum 1; maximum 5
optionsobjectNoadditionalProperties false
options.notify_no_databooleanNo
options.no_data_timeframeintegerNominimum 0; maximum 1440
options.renotify_intervalintegerNominimum 0; maximum 10080
options.evaluation_delayintegerNominimum 0; maximum 86400
options.include_tagsbooleanNo
options.require_full_windowbooleanNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idintegerYesminimum 1
namestringYesminLength 1; maxLength 200
typestringYesminLength 1; maxLength 64
querystringYesminLength 1; maxLength 4096
messagestringNomaxLength 4000
overall_statestringNominLength 1; maxLength 64
creatorstringNominLength 3; maxLength 320
created_atstringNominLength 1; maxLength 64
modified_atstringNominLength 1; maxLength 64
tagsarray<string>YesmaxItems 100
tags[]stringYesminLength 1; maxLength 200
priorityintegerNominimum 1; maximum 5

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "type": {
      "type": "string",
      "enum": [
        "metric alert",
        "query alert",
        "service check",
        "event-v2 alert"
      ]
    },
    "query": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4096
    },
    "message": {
      "type": "string",
      "maxLength": 4000
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      },
      "maxItems": 100
    },
    "priority": {
      "type": "integer",
      "minimum": 1,
      "maximum": 5
    },
    "options": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "notify_no_data": {
          "type": "boolean"
        },
        "no_data_timeframe": {
          "type": "integer",
          "minimum": 0,
          "maximum": 1440
        },
        "renotify_interval": {
          "type": "integer",
          "minimum": 0,
          "maximum": 10080
        },
        "evaluation_delay": {
          "type": "integer",
          "minimum": 0,
          "maximum": 86400
        },
        "include_tags": {
          "type": "boolean"
        },
        "require_full_window": {
          "type": "boolean"
        }
      }
    }
  },
  "required": [
    "name",
    "type",
    "query",
    "message"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "integer",
      "minimum": 1
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "type": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "query": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4096
    },
    "message": {
      "type": "string",
      "maxLength": 4000
    },
    "overall_state": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "creator": {
      "type": "string",
      "minLength": 3,
      "maxLength": 320
    },
    "created_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "modified_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      },
      "maxItems": 100
    },
    "priority": {
      "type": "integer",
      "minimum": 1,
      "maximum": 5
    }
  },
  "required": [
    "id",
    "name",
    "type",
    "query",
    "tags"
  ]
}