Skip to main content
FuseFuse
IntegrationsDatadogActions

List Datadog events

List events with cursor pagination. Requires events_read. Callers cannot submit arbitrary search syntax.

Agent markdown

events.list · 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
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
eventsarray<object>YesmaxItems 100
events[]objectYesadditionalProperties false
events[].idstringYesminLength 1; maxLength 128
events[].titlestringYesminLength 1; maxLength 500
events[].messagestringNomaxLength 4000
events[].timestampstringNominLength 1; maxLength 64
events[].categorystringNomaxLength 64
events[].statusstringNominLength 1; maxLength 64
events[].tagsarray<string>YesmaxItems 100
events[].tags[]stringYesminLength 1; maxLength 200
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "events": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "title": {
            "type": "string",
            "minLength": 1,
            "maxLength": 500
          },
          "message": {
            "type": "string",
            "maxLength": 4000
          },
          "timestamp": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "category": {
            "type": "string",
            "maxLength": 64
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "maxLength": 200
            },
            "maxItems": 100
          }
        },
        "required": [
          "id",
          "title",
          "tags"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "events"
  ]
}