Skip to main content
FuseFuse
IntegrationsDatadogActions

Search Datadog incidents

Search incidents by closed state filters. Requires incident_read. The adapter generates Datadog search syntax; callers cannot submit raw queries.

Agent markdown

incidents.search · 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
statesarray<string>NominItems 1; maxItems 3
states[]stringYesenum active | stable | resolved
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
incidentsarray<object>YesmaxItems 100
incidents[]objectYesadditionalProperties false
incidents[].idstringYesminLength 1; maxLength 128
incidents[].titlestringYesminLength 1; maxLength 500
incidents[].customer_impact_scopestringNomaxLength 4000
incidents[].customer_impact_statusstringNominLength 1; maxLength 64
incidents[].severitystringNomaxLength 32
incidents[].statestringNominLength 1; maxLength 64
incidents[].created_atstringNominLength 1; maxLength 64
incidents[].modified_atstringNominLength 1; maxLength 64
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "states": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "active",
          "stable",
          "resolved"
        ]
      },
      "minItems": 1,
      "maxItems": 3
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "incidents": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "title": {
            "type": "string",
            "minLength": 1,
            "maxLength": 500
          },
          "customer_impact_scope": {
            "type": "string",
            "maxLength": 4000
          },
          "customer_impact_status": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "severity": {
            "type": "string",
            "maxLength": 32
          },
          "state": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "created_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "modified_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "id",
          "title"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "incidents"
  ]
}