get-incidents
Retrieve and filter incidents from Datadog's incident management system. Supports active/archived status and query-based searches to review current or past incidents efficiently.
Instructions
List incidents from Datadog's incident management system. Can filter by active/archived status and use query strings to find specific incidents. Helpful for reviewing current or past incidents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeArchived | No | ||
| limit | No | ||
| pageOffset | No | ||
| pageSize | No | ||
| query | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeArchived": {
"type": "boolean"
},
"limit": {
"default": 100,
"type": "number"
},
"pageOffset": {
"type": "number"
},
"pageSize": {
"type": "number"
},
"query": {
"type": "string"
}
},
"type": "object"
}