بنقرة واحدة
ed-patterns
Log patterns - clustered message signatures with counts, deltas and sentiment for anomaly hunting.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Log patterns - clustered message signatures with counts, deltas and sentiment for anomaly hunting.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
AI Teammate - manage connectors (PagerDuty, Slack, GitHub, ...), update teammates (agents) and view teammate activity.
Pipelines - fleet management, config changes, version history, deployments and live capture.
Dashboards - create, update, inspect and validate metric dashboards from the CLI.
Cross-signal incident investigation workflow - from alert to root cause using events, patterns, logs, metrics, traces and pipeline history.
Metrics - discover metric names and run aggregation queries (timeseries and tables).
Monitors - create, manage, snooze and resolve Edge Delta monitors and alerts.
| name | ed-patterns |
| description | Log patterns - clustered message signatures with counts, deltas and sentiment for anomaly hunting. |
| metadata | {"version":"1.0.0","author":"edgedelta","repository":"https://github.com/edgedelta/agent-skills","tags":"edgedelta,patterns,clustering,anomaly,logs","alwaysApply":"false"} |
Edge Delta clusters similar log messages into patterns. Each pattern
carries count, proportion, sentiment (positive/negative/neutral) and
delta (change vs an earlier window). Patterns are the fastest way to answer
"what's new or surging in the logs?" without reading raw lines.
The edx CLI must be installed and authenticated. See the ed-edx skill.
# ~50 interesting clusters: top anomalies, biggest delta up/down, top counts
edx patterns list --summary --lookback 1h
# Negative-sentiment patterns only (errors, failures, timeouts)
edx patterns list --negative --lookback 1h
# Scoped to one service
edx patterns list -q 'service.name:"api"' --negative --limit 20
The delta stat compares against an earlier window. Default offset equals the
lookback. To compare against the same window yesterday:
edx patterns list --lookback 1h --offset 24h
A large positive delta on a negative-sentiment pattern is a strong incident signal: a new or surging error signature.
Once a suspicious pattern is found, fetch the raw log lines behind it. The most
reliable way is to search logs for a distinctive token from the signature
(patterns render variable parts as *, so pick the literal words):
edx logs search -q '"connection refused"' --lookback 1h
edx patterns samples returns raw lines too, but it filters only by -q and
time - the --param pattern= value is currently ignored by the backend (the
same lines come back regardless), so it cannot isolate a single pattern. Use it
to pull recent lines for a service, and use the logs search token approach
above to read lines for one specific pattern:
edx patterns samples -q 'service.name:"api"' --lookback 1h
| Signal | Meaning |
|---|---|
| New pattern, high count | New failure mode or new deploy behavior |
| delta >> 0, negative sentiment | Surging error - investigate first |
| delta << 0 on normal traffic patterns | Possible traffic drop / outage |
| High proportion shift | Behavior change even if totals look flat |
--lookback.edx facets options --scope pattern --facet service.name.--negative (the issue may be neutral-sentiment).