list_alert_events
Return alert trigger events, newest first. Filter by alert ID to see a specific alert, or paginate through all events to review recent firings and frequency.
Instructions
Return alert trigger events, newest first. Account-wide (recent firings of all alerts) by default; pass alertId to narrow to one alert. Use for questions like "which alerts fired recently and how often?" or "when did the cost alert go off?". Each event's id can be passed directly to the acknowledge_alert tool. acknowledgedAt / acknowledgedBy are null if not yet acknowledged. Each event includes a snapshot of thresholdValue / windowMinutes / alertType at firing time (so the firing-time conditions survive later rule edits). For the next page, pass the last event's triggeredAt + id as beforeTriggeredAt + beforeId (keyset cursor).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of events to return (1-100, default 20) | |
| alertId | No | ID to narrow to a specific alert. Omit for all alerts' trigger history | |
| beforeId | No | Pagination cursor (id of the last event on the previous page). Must be passed together with beforeTriggeredAt | |
| beforeTriggeredAt | No | Pagination cursor (triggeredAt of the last event on the previous page). Must be passed together with beforeId |