What problem does it solve?
The same error can appear as dozens of separate PostHog error tracking issues when stack frames or messages contain volatile data like random IDs, build hashes, or dynamic file paths. This Skill consolidates those duplicate fingerprints into one canonical issue and prevents future events from spawning new ones.
Core Features & Use Cases
- Duplicate Detection: Compares candidate issues by SDK, exception type, top stack frame, message template, and handled status to confirm they are truly the same error before merging.
- One-Shot Merge: Collapses existing duplicate issues into a chosen target issue using the PostHog error tracking merge API, with batching guidance for large sprawl.
- Durable Grouping Rules: Creates ingestion-time grouping rules that rewrite matching event fingerprints to a single canonical value, with safe filter construction on $exception_types, $exception_sources, and $exception_values.
- Use Case: A team sees 40 separate TypeError issues that all originate from the same checkout bundle file with hashed filenames. Use this Skill to verify they share a stack frame, merge them into the highest-occurrence issue, and add a grouping rule so future events route to one issue.
Quick Start
Ask the assistant to find and merge the duplicate TypeError issues in PostHog error tracking and set up a grouping rule so they stop splitting into new issues.