log_analyzer_extract_errors
Extract and group errors from log files to identify patterns, count occurrences, and analyze stack traces for debugging.
Instructions
Extract all errors and exceptions from a log file with stack traces.
Args:
file_path: Path to the log file
include_warnings: Include WARN level entries (default: False)
group_similar: Group similar error messages (default: True)
max_errors: Maximum errors to return (1-500, default: 100)
response_format: Output format - 'markdown' or 'json'
Returns:
Extracted errors grouped by similarity with occurrence counts,
timestamps, and sample stack traces.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| include_warnings | No | ||
| group_similar | No | ||
| max_errors | No | ||
| response_format | No | markdown |