find_error_pattern_logs
Search Loki logs to identify elevated error patterns within specified time ranges and label scopes for monitoring analysis.
Instructions
Searches Loki logs for elevated error patterns 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"
}