IntegrationsDatadogActions
List Datadog events
List events with cursor pagination. Requires events_read. Callers cannot submit arbitrary search syntax.
events.list · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
events | array<object> | Yes | maxItems 100 |
events[] | object | Yes | additionalProperties false |
events[].id | string | Yes | minLength 1; maxLength 128 |
events[].title | string | Yes | minLength 1; maxLength 500 |
events[].message | string | No | maxLength 4000 |
events[].timestamp | string | No | minLength 1; maxLength 64 |
events[].category | string | No | maxLength 64 |
events[].status | string | No | minLength 1; maxLength 64 |
events[].tags | array<string> | Yes | maxItems 100 |
events[].tags[] | string | Yes | minLength 1; maxLength 200 |
next_cursor | string | No | minLength 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"
]
}