find_slow_requests
Search Tempo datasources to identify slow requests within specified time ranges and labels for performance analysis.
Instructions
Searches relevant Tempo datasources for slow requests and returns the results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | No | End time for the investigation | |
labels | Yes | Labels to scope the analysis | |
name | Yes | The name of the investigation | |
start | No | Start time for the investigation |
Input Schema (JSON Schema)
{
"properties": {
"end": {
"description": "End time for the investigation",
"type": "string"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Labels to scope the analysis",
"type": "object"
},
"name": {
"description": "The name of the investigation",
"type": "string"
},
"start": {
"description": "Start time for the investigation",
"type": "string"
}
},
"required": [
"name",
"labels"
],
"type": "object"
}