get_incident
Retrieve detailed information about a specific Grafana incident using its unique ID to access full incident data for monitoring and analysis.
Instructions
Get a single incident by ID. Returns the full incident details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the incident to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the incident to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}