get_sift_analysis
Retrieve a specific analysis from a Grafana investigation using its unique UUID to access detailed monitoring insights and incident data.
Instructions
Retrieves a specific analysis from an investigation by its UUID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisId | Yes | The UUID of the specific analysis | |
investigationId | Yes | The UUID of the investigation |
Input Schema (JSON Schema)
{
"properties": {
"analysisId": {
"description": "The UUID of the specific analysis",
"type": "string"
},
"investigationId": {
"description": "The UUID of the investigation",
"type": "string"
}
},
"required": [
"investigationId",
"analysisId"
],
"type": "object"
}