list_incidents
Retrieve Grafana incidents with filtering options for status and drill incidents to monitor and manage system alerts effectively.
Instructions
List Grafana incidents. Allows filtering by status and optionally including drill incidents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
drill | No | Whether to include drill incidents | |
limit | No | Maximum number of incidents to return | |
status | No | The status of incidents to include |
Input Schema (JSON Schema)
{
"properties": {
"drill": {
"description": "Whether to include drill incidents",
"type": "boolean"
},
"limit": {
"description": "Maximum number of incidents to return",
"type": "number"
},
"status": {
"description": "The status of incidents to include",
"enum": [
"active",
"resolved"
],
"type": "string"
}
},
"type": "object"
}