IntegrationsDatadogActions
List Datadog monitors
List monitors with documented page and page_size pagination via opaque versioned page cursor (p:N). Requires monitors_read.
monitors.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 |
monitors | array<object> | Yes | maxItems 100 |
monitors[] | object | Yes | additionalProperties false |
monitors[].id | integer | Yes | minimum 1 |
monitors[].name | string | Yes | minLength 1; maxLength 200 |
monitors[].type | string | Yes | minLength 1; maxLength 64 |
monitors[].query | string | Yes | minLength 1; maxLength 4096 |
monitors[].message | string | No | maxLength 4000 |
monitors[].overall_state | string | No | minLength 1; maxLength 64 |
monitors[].creator | string | No | minLength 3; maxLength 320 |
monitors[].created_at | string | No | minLength 1; maxLength 64 |
monitors[].modified_at | string | No | minLength 1; maxLength 64 |
monitors[].tags | array<string> | Yes | maxItems 100 |
monitors[].tags[] | string | Yes | minLength 1; maxLength 200 |
monitors[].priority | integer | No | minimum 1; maximum 5 |
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": {
"monitors": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"monitors"
]
}