
Investigating Metric Anomalies
FreeQuickly diagnose metric issues in PostHog Metrics.
Free · Opens the source repo
What Investigating Metric Anomalies does
The Investigating Metric Anomalies skill is designed to assist users in diagnosing and resolving metric anomalies within PostHog Metrics. When faced with a symptom such as rising ingestion lag or spiking error rates, this skill provides a structured approach to uncovering the probable cause by leveraging metrics, logs, and traces. It helps users move from identifying a metric symptom to understanding the underlying issues efficiently, ensuring that they can respond to incidents effectively.
The skill operates through a systematic loop that begins with pinpointing the exact metric name. If the user doesn't have this information, it can generate a list of relevant metrics based on partial names. Once the metric is identified, the next step involves characterizing the anomaly to assess its severity and identify potential culprits. This characterization reveals critical details like the direction of change and the timing of onset, which are essential for further investigation.
Following the initial characterization, users can conduct targeted metric queries to validate hypotheses about the issue. This involves drilling down into specific metrics, normalizing data to account for traffic changes, and checking companion metrics that may provide additional context. Finally, the skill guides users in correlating findings across logs and traces to build a comprehensive understanding of the incident. By following this structured methodology, users can conclude with evidence-based insights rather than assumptions, enhancing their incident response capabilities.
This skill is particularly beneficial for developers and operations teams who need to troubleshoot metric-related issues in real-time. It streamlines the process of incident triage, allowing for faster resolution times and improved system reliability. Whether dealing with alerts from OpenTelemetry or Prometheus metrics, this skill equips users with the tools necessary to investigate and resolve anomalies effectively.
When to use it
Use this skill when you encounter unexpected changes in metrics or receive alerts from your monitoring tools, and need to investigate the underlying causes.
When not to use it
This skill may not be suitable for environments not using PostHog Metrics or for issues unrelated to metric anomalies, such as application logic errors.
What you can build with it
Diagnosing Rising Ingestion Lag
When alerted about increasing ingestion lag, use this skill to identify the specific metric and analyze its behavior to determine if a service is down.
Investigating Spiking Error Rates
If error rates spike unexpectedly, this skill helps characterize the anomaly and correlate it with logs to find the root cause.
Triage Latency Degradation
When latency metrics degrade, follow the structured approach to pinpoint the issue and gather evidence from logs and traces.
How to install Investigating Metric Anomalies
View source1. Install with the skills CLI
npx skills add posthog/posthog/investigating-metric-anomalies --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by posthogInvestigating metric anomalies
The job: go from a metric symptom ("ingestion lag is rising") to a probable cause with evidence, fast. The metric tells you what and when; logs and traces tell you why. Follow the loop below — it front-loads the cheap, high-information calls and only fans out when the blast radius is unclear.
The loop
1. Pin down the metric
If you have the exact metric name, skip ahead. Otherwise call metric-names-list with a substring from the symptom (lag, error, latency, queue). The returned metric_type decides the lens: counters (sum) are only meaningful as rate/increase, gauges as avg, histograms as histogram_quantile.
2. Characterize first — one call, three answers
Call characterize-metric-anomaly with the metric name and anomalyFrom (the alert fire time, or when the user says it started looking wrong; subtract some margin if unsure). It compares against the preceding window by default and answers:
- How bad:
direction,change_ratio,anomaly_peakvsbaseline_mean. Ifdirectionisflat, your window or metric is wrong — widen the window, or compare against the same window yesterday viabaselineFrom/baselineTo(daily-pattern metrics often look "anomalous" against the immediately-preceding hours). - When:
onset_time— treat this timestamp as the pivot for everything that follows. - Where:
top_movers— label values whose behavior changed. One mover (a single pod, shard, or endpoint) means a localized culprit; everything moving together means a shared cause (an upstream dependency, a deploy, infra).
3. Sharpen with targeted metric queries
Use query-metrics to test the hypotheses the report raises:
- Drill a mover: re-query with
filterspinning the suspicious label value, grouped by a second key, to localize further (pod → container, endpoint → status code). - Normalize: a rising error count means nothing if traffic doubled — use
clauses+formula(errors / requests) to separate rate changes from volume changes. - Check the neighbors: query the obvious companion metrics over the same window (for lag: throughput and error counters of the same service; for latency: request rate and saturation gauges). Use the same
intervalso the grids align visually.
4. Correlate across signals at the onset
Pivot into logs and traces using the same service and a window bracketing onset_time (a few buckets before, through the peak):
- Logs: use
query-logs(follow its own discover-first workflow) filtered to the implicatedservice.nameand window, severityerrorfirst, thenwarn. Restarts, crash loops, connection errors, and deploy markers right before onset are the classic causes. Widen to other services in the request path if the service's own logs are clean. - Traces: use the APM span tools (
query-apm-spansetc.) for the same service/window — slow or erroring spans show which dependency degraded, and atrace_idfrom an exemplar or log line links a concrete request across all three signals.
5. Conclude with evidence, not vibes
State: the symptom (metric, magnitude, onset), the probable cause (what you found in logs/traces and how its timing aligns with the onset), the blast radius (which services/labels are affected, from the movers and grouped queries), and the confidence level. If the cause is still ambiguous, say which hypothesis the evidence favors and what would disambiguate (e.g. "the lag began draining at 20:12 — consistent with a consumer restart; check who restarted it").
Worked example: "ingestion lag is rising — why?"
metric-names-listwithvalue: "lag"→logs_rate_limiter_message_lag_seconds(histogram) and friends.characterize-metric-anomalyon it withanomalyFrom= alert time → directionup, change ratio 40x,onset_time20:10, top moverservice_name = logs-ingestion(the other services' lag stayed flat) — so the logs consumer specifically is behind, not the whole pipeline.query-metrics:rateof the consumer's throughput counter over the same window → throughput was zero during the gap and spiked after onset: the consumer wasn't slow, it was down, and the "rising lag" is it draining the backlog.query-logsforservice.name = logs-ingestion(and its neighbors) around 20:00–20:15 → process exit + restart lines at the gap boundaries.- Conclusion: consumer outage 20:01–20:10 (restart visible in logs); lag spike is backlog drain, self-recovering; affected signal: logs freshness only — no data loss (topic retained messages). Evidence: zero throughput during the window, message-age spike equal to outage duration, restart log lines.
Pitfalls
- Counters reset on process restart —
rate/increasealready handle this; never eyeball raw cumulative counter values. - A metric that stops reporting is not "zero" — a gap in
serieswithtop_moversshowing a vanished label value means the emitter died; pivot to logs immediately. - Don't trust a single aggregation: a flat
avgcan hide a screamingp95. For latency-like gauges and histograms, characterize the tail too. - Scraped Prometheus metrics arrive ~15–60s behind real time; don't read the last bucket of a series as "current".
Frequently asked questions about Investigating Metric Anomalies
Similar skills
Turborepo
Optimized build system for JavaScript/TypeScript monorepos.
Azure Pipelines Validation
Streamline your Azure DevOps pipeline changes locally.
Azure Developer CLI
Streamline your Azure project workflows with best practices.
Azure Container Registry CLI
Manage Azure Container Registry resources with ease.
Aspire
Build and orchestrate polyglot distributed applications seamlessly.
Vercel CLI
Manage and deploy Vercel projects from the command line.
