get_recent_errors
Retrieve recent error entries from monitored log files for debugging and analysis, with optional file path filtering and result limit control.
Instructions
Get recent error analysis from monitored files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | No | Optional: specific file path to get errors from | |
limit | No | Maximum number of recent errors to return |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Optional: specific file path to get errors from",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of recent errors to return",
"type": "number"
}
},
"type": "object"
}