IntegrationsDatadogActions
Get Datadog monitor
Get one monitor by id. Requires monitors_read.
monitors.get · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
monitor_id | integer | Yes | minimum 1 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | integer | Yes | minimum 1 |
name | string | Yes | minLength 1; maxLength 200 |
type | string | Yes | minLength 1; maxLength 64 |
query | string | Yes | minLength 1; maxLength 4096 |
message | string | No | maxLength 4000 |
overall_state | string | No | minLength 1; maxLength 64 |
creator | string | No | minLength 3; maxLength 320 |
created_at | string | No | minLength 1; maxLength 64 |
modified_at | string | No | minLength 1; maxLength 64 |
tags | array<string> | Yes | maxItems 100 |
tags[] | string | Yes | minLength 1; maxLength 200 |
priority | integer | No | minimum 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"
]
}