| name | ed-events |
| description | Events - pattern anomalies, monitor alert triggers and Kubernetes events. |
| metadata | {"version":"1.0.0","author":"edgedelta","repository":"https://github.com/edgedelta/agent-skills","tags":"edgedelta,events,anomalies,alerts,kubernetes","alwaysApply":"false"} |
Edge Delta Events
Events are the "what happened" stream: anomaly detections, monitor alert
triggers and Kubernetes events. Always check events early in an incident -
they often point straight at the cause.
Prerequisites
The edx CLI must be installed and authenticated. See the ed-edx skill.
Event Types
| Query | Meaning |
|---|
event.type:"pattern_anomaly" | Log anomaly detections |
event.type:"metric_threshold" | Metric alert triggers |
event.type:"log_threshold" | Log alert triggers |
event.domain:"Monitor" | All monitor-triggered events |
event.domain:"K8s" | Kubernetes events (OOMKilled, BackOff, ...) |
Discover the live set: edx facets options --scope event --facet event.type
and --facet event.domain.
Search Events
edx events search -q 'event.type:"pattern_anomaly"' --lookback 6h
edx events search -q 'service.name:"api" AND event.type:"pattern_anomaly"'
edx events search -q 'event.domain:"Monitor"' --output table
edx events search -q 'event.domain:"K8s" AND OOMKilled' --lookback 24h
Full-text search is supported in the event scope (bare words work).
Incident Usage
- Establish the incident window (from the page/alert).
edx events search --from <start> --to <end> - what fired in the window?
- Pattern anomalies name the service and signature - pivot to
edx patterns list / edx logs search for detail.
- Monitor alerts carry the monitor ID -
edx monitors get <id> for the
query and thresholds behind it.