get_acknowledged_errors
Fetch open and acknowledged errors requiring investigation. Returns errors with per-request context (user, path, method) sorted by frequency. Filter by level and minimum occurrences.
Instructions
Fetch open and acknowledged errors waiting for AI investigation.
Returns errors with status 'open' or 'acknowledged' — all errors needing
attention. Each error includes recent_occurrences[] with per-request context
(user_id, path, method) for investigation.
USAGE:
- Call this when user says "investigate errors" or "/investigate-errors"
- Errors are sorted by occurrence count (most frequent first)
- Each result includes recent_occurrences[] for per-request investigation context
QUERY PARAMETERS:
- limit: Max errors to return (default: 10)
- level_filter: Filter by level - 'all', 'critical', 'error', 'warning' (default: 'all')
- min_occurrences: Only errors with occurrence_count >= this (default: 1)
EXAMPLE:
get_acknowledged_errors(limit=5, level_filter="error", min_occurrences=3)
→ Returns top 5 error-level issues that occurred 3+ times
RETURNS:
- acknowledged_errors: Array of error objects (open + acknowledged)
- total_count: Number of errors returned
- filters_applied: Summary of filters usedInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of errors to return | |
| level_filter | No | Filter by error level | all |
| min_occurrences | No | Only errors with occurrence_count >= this |