Skip to main content
FuseFuse
IntegrationsDatadogActions

Get Datadog monitor

Get one monitor by id. Requires monitors_read.

Agent markdown

monitors.get · Datadog · v1

Details

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

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
monitor_idintegerYesminimum 1

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": {
    "monitor_id": {
      "type": "integer",
      "minimum": 1
    }
  },
  "required": [
    "monitor_id"
  ]
}
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"
  ]
}