watch_log_file
Monitor log files in real-time to detect errors and issues as they occur, enabling prompt debugging and analysis.
Instructions
Start monitoring a log file for real-time error detection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the log file to monitor | |
pollInterval | No | Polling interval in milliseconds |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the log file to monitor",
"type": "string"
},
"pollInterval": {
"default": 1000,
"description": "Polling interval in milliseconds",
"type": "number"
}
},
"required": [
"filePath"
],
"type": "object"
}