
Investigating Logs
FreeStreamline log investigations in PostHog projects.
Free · Opens the source repo
What Investigating Logs does
The Investigating Logs skill is designed for users working with PostHog projects who need to efficiently analyze and understand log data. This skill simplifies the log investigation process by summarizing large datasets into manageable insights, allowing users to quickly verify service health, explain error spikes, and triage incidents. Instead of sifting through raw log entries, users can utilize powerful tools to gain immediate insights into their log streams.
At its core, the skill emphasizes the importance of summarization before detailed examination. Users can leverage functions like posthog:logs-patterns to condense millions of log lines into a concise set of templates, making it easier to identify trends and anomalies. When investigating changes or incidents, the posthog:logs-patterns-diff tool provides a direct comparison of log templates between different time windows, helping users pinpoint what has changed and why errors may have increased.
This skill is particularly beneficial for developers and operations teams who need to maintain service reliability and respond to issues promptly. By focusing on the most relevant log data, users can quickly ascertain whether a deployment or service is functioning correctly, and they can efficiently track down the root causes of failures. The structured approach to log analysis ensures that investigations start from a place of understanding rather than confusion.
However, this skill is not intended for creating or managing log alerts, nor is it suitable for performing complex analytics on product events. Users should avoid using raw SQL queries for log investigations, as the tools provided in this skill are optimized for efficiency and clarity, allowing for quicker and more effective log analysis.
When to use it
Use this skill when you need to check the health of a service, investigate error spikes, or understand log messages during an incident.
When not to use it
Do not use this skill for setting up log alerts or performing detailed analytics on product data; it is focused on log investigations only.
What you can build with it
Verify Service Health After Deployment
After a deployment, use this skill to confirm that the service is still functioning correctly by checking logs for new error patterns.
Investigate an Error Spike
When users report an increase in errors, employ this skill to identify the cause by comparing log patterns before and after the spike.
Understand Log Messages from a New Service
If you're unfamiliar with a service's log output, use this skill to summarize and interpret the log messages effectively.
How to install Investigating Logs
View source1. Install with the skills CLI
npx skills add posthog/posthog/investigating-logs --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 logs
Investigation is a narrowing problem: summarize before you read.
One posthog:logs-patterns call compresses millions of lines into at most 200 templates,
and one posthog:logs-patterns-diff call answers "what is different about now vs. before" directly.
Raw rows (posthog:query-logs) are the last step of an investigation, never the first.
When to use this skill
- "Check the logs" / "is service X healthy?" / "did my deploy (or model bump, config change, migration) break anything?"
- "Why are errors up?" / "explain this spike" / incident triage — "what changed?"
- "What is this service logging?" — orienting in an unfamiliar or noisy stream.
- Finding the log evidence for a failure reported elsewhere (an alert, an error-tracking issue, a user complaint).
When not to use this skill
- Creating or tuning log alerts — that's
authoring-log-alerts. - Analytics over product events, persons, or insights — that's
querying-posthog-data. - HogQL exposes a
logstable viaposthog:execute-sql, but do not investigate through it: hand-written SQL over logs routinely hits read-byte caps and re-derives what the tools below do in one cheap call. Reserve SQL for the rare case of joining log-derived facts with non-log data.
Tools
| Tool | Job |
|---|---|
posthog:logs-services-create | Top-25 services with log_count, error_count, error_rate, sparkline. Orientation. |
posthog:logs-patterns | Mine one window's message templates, ordered by frequency. "What is this stream saying?" |
posthog:logs-patterns-diff | Diff templates between two windows: new / rate-shifted / gone. "What changed?" |
posthog:logs-count / posthog:logs-count-ranges | Scalar and time-bucketed counts for a filter. Localize volume before pulling rows. |
posthog:logs-sparkline-query | Volume over time broken down by severity or service (the one bucketed view with a breakdown). |
posthog:logs-facet-values-create | Distribution of severity/service (or a resource attribute) under a filter. |
posthog:logs-attributes-list / posthog:logs-attribute-values-list | Discover attribute keys and values before building filters. |
posthog:query-logs | Raw rows. Endpoint of every drill-down, entry point of none. |
Each tool's own description documents its parameters and response shape — read it before calling.
Pick the workflow by question shape
"Is it healthy?" — post-deploy / post-change verification
The user changed something (deploy, model bump, config, migration) and wants to know the logs still look right.
- Pin down the change time and the affected service(s). Ask if the user hasn't said; the diff is meaningless without a boundary.
- Orient with
posthog:logs-services-create: is the service still logging at all, and what is its error_rate now? A service that went silent fails verification just as hard as one that started erroring. posthog:logs-patterns-diffwithquery.dateRangefrom the change time to now andbaselineDateRangeset to a comparable window just before the change, scoped toserviceNames. New error/fatal templates right after a change are the classic regression signature; largerate_ratioshifts on existing error templates are the second thing to check.- Check volume continuity with
posthog:logs-count-rangesspanning before and after the boundary: a rate discontinuity (crash loop, restart storm, silence) shows up here even when message content looks unchanged. - Drill only the suspects: pivot each suspicious pattern to raw lines via its
match_regexwithposthog:query-logs.
A pass verdict needs all three: no new error templates, no large error rate_ratio shifts, and continuous volume. Say which windows you compared — "healthy" is only as strong as the baseline.
"Explain this spike"
- Localize it:
posthog:logs-count-rangesover the user's window, then recurse into the dense bucket(s) — each bucket'sdate_from/date_tofeeds the next call. Stop after 3–4 levels. - Explain it:
posthog:logs-patterns-diffwith the spike asquery.dateRangeand the window just before asbaselineDateRange. The topnewandrate_shiftentries are the explanation. Do not mine both windows separately and diff by hand — the diff is one call.
Incident triage — "what broke?"
posthog:logs-patterns-diff first: incident window vs. a known-good window just before (or omit the baseline for
same-window-last-week). Suspects are new entries and the biggest rate_ratio shifts; pivot each to raw lines.
If the failing service is unknown, find it first with posthog:logs-facet-values-create faceting service_name
under severityLevels: ["error", "fatal"].
"What is this stream saying?" — unfamiliar service
posthog:logs-patterns over the last hour, scoped to the service. Scan templates by estimated_count and
non-zero error share in severity_counts. Widen the window or add searchTerm only if the answer isn't there.
Known needle — a specific message, attribute, or person
When the target is already precise (an error string, a request id, a distinct_id), skip pattern mining:
discover the right keys with posthog:logs-attributes-list / posthog:logs-attribute-values-list,
size the result with posthog:logs-count, then pull rows with posthog:query-logs.
Rules that keep investigations honest and cheap
- Scope
serviceNames(or a resource-attribute filter) on every call once the target service is known. Unscoped calls scan the whole team's stream and starve the pattern sample budget. posthog:query-logsrequires an explicitquery.dateRange— omitting it is a 400, not a default window.- Pattern counts are sampled estimates (
sampled: true); templates rarer than ~1 in 10,000 rows can be invisible. Absence of a rare template is not evidence it stopped. - Before trusting a wall of
newentries in a diff, checkbaseline.total_count— a tiny or empty baseline (logging only just started) makes everything look new. severityLevelsmatches the six canonical lowercase buckets againstseverity_textexactly. Zero rows on a severity filter → check the stored values withposthog:logs-attribute-values-list { key: "severity_text" }.- Budget: one services call, at most one patterns-diff per window pair, 3–4 count-ranges levels,
and
query-logsonly for confirmed suspects withlimit≤ 100.
Output
Lead with the verdict, then the evidence:
- Verdict: healthy / regressed / inconclusive, with the windows compared.
- Suspects (if any): template, classification (
new/rate_shift), estimated counts orrate_ratio, services, and 1–2 sample raw lines. - What was checked and what wasn't: services covered, windows, and any sampling or baseline caveats that limit confidence.
The user should be able to act on the verdict without re-running the investigation.
Frequently asked questions about Investigating Logs
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.
