Two Philosophies of Product Analytics
Amplitude and PostHog represent two fundamentally different approaches to understanding how people use your product. Amplitude is the established cloud analytics platform, refined over a decade, built for teams that want deep behavioral insights without managing infrastructure. PostHog is the open-source challenger that bundles analytics, session replay, feature flags, and experimentation into a single self-hostable platform.
The choice comes down to what you value most: analytical depth and ecosystem maturity (Amplitude) or data ownership, cost transparency, and tooling breadth (PostHog). Use the PM Tool Picker to see which analytics approach fits your team's profile, or read the Product Analytics Handbook for a full guide to setting up your analytics stack.
Quick Comparison
| Dimension | Amplitude | PostHog |
|---|---|---|
| Best for | Growth teams, behavioral analysis, enterprise | Startups, privacy-first teams, full-stack analytics |
| Deployment | Cloud only | Cloud or self-hosted (Docker/K8s) |
| Open source | No | Yes (MIT license) |
| Event tracking | Unlimited events (paid plans) | 1M free, then usage-based |
| Session replay | No (requires separate tool) | Built-in (5,000 free/month) |
| Feature flags | Experiment add-on (extra cost) | Built-in (unlimited, free) |
| A/B testing | Experiment add-on (sequential testing, CUPED) | Built-in (Bayesian engine) |
| Funnel analysis | Advanced (multi-path, conversion windows) | Good (standard funnel builder) |
| Retention analysis | Advanced (unbounded, custom brackets) | Good (N-day, unbounded) |
| Path analysis | Pathfinder (visual journey mapping) | Basic (path explorer, newer) |
| Cohort builder | Advanced (behavioral, predictive) | Good (behavioral, property-based) |
| Data warehouse sync | Snowflake, BigQuery, Redshift | Snowflake, BigQuery, S3, ClickHouse |
| Pricing model | MTU-based (Starter free, Growth/Enterprise custom) | Usage-based (events + recordings) |
| Typical cost (Series A startup) | $30,000-60,000/year | $3,000-12,000/year |
| Compliance | SOC 2, GDPR DPA, EU residency (enterprise) | Self-host for full control, SOC 2 (cloud) |
Amplitude: Deep Dive
Amplitude has been a product analytics leader since 2012. It powers analytics for companies like Walmart, NBC, and PayPal. Its core strength is turning raw event data into actionable behavioral insights through a mature, polished interface.
For a broader look at the product analytics space, see the guide on what product analytics is and why it matters.
Strengths
- Behavioral analysis depth. Amplitude's Pathfinder visualizes every path users take through your product. Compass identifies which behaviors predict long-term retention. These features go beyond standard funnels and retention charts, helping growth teams find non-obvious levers. A team might discover that users who export a report within their first week retain at 3x the rate of those who do not. That insight is hard to find in simpler analytics tools
- Cohort sophistication. Build cohorts based on any combination of behavioral and demographic criteria. Predictive cohorts use ML to identify users likely to churn, convert, or upgrade. This level of targeting is useful for personalization and lifecycle marketing. You can create a cohort of "users who completed onboarding but have not used the core feature in 14 days" and push it to Braze or Iterable for re-engagement
- Collaboration features. Notebooks combine charts, text annotations, and embedded queries into shareable analyses. Teams can build living dashboards that tell a story, not just display numbers. This matters when analytics results need to reach non-technical stakeholders. A PM can build a notebook showing why a metric moved, share it with the leadership team, and get alignment without scheduling a meeting
- Data governance. Amplitude's Govern module provides a data dictionary, event naming enforcement, and taxonomy management. At scale, this prevents the "what does this event mean?" problem that plagues analytics implementations. When 15 engineers are shipping events independently, taxonomy drift is inevitable without governance tooling
- Integration ecosystem. Native integrations with Segment, mParticle, Braze, Iterable, and dozens of other growth tools. Data flows in and out without custom engineering. The warehouse sync (Snowflake, BigQuery, Redshift) enables teams to combine product data with revenue data, support data, and marketing data for holistic analysis
Weaknesses
- Pricing opacity. Amplitude does not publish pricing for Growth and Enterprise plans. Sales calls are required. Many teams report sticker shock when they outgrow the free tier, with annual contracts ranging from $30,000 to $200,000+ depending on volume. Budget approval becomes a quarterly negotiation rather than a line item
- No session replay. Amplitude tracks events but does not record user sessions. Teams need a separate tool (FullStory, LogRocket, Hotjar) to see what users actually do between events. This adds cost and creates context-switching. When you see a funnel drop-off, you want to watch what happened. With Amplitude, that means opening a different tool
- Feature flags are an add-on. Amplitude Experiment is priced separately from the core analytics product. Teams pay extra for A/B testing and feature flags. PostHog includes both at no additional cost. The add-on pricing model means the "total cost of analytics" with Amplitude is higher than the sticker price suggests
- Vendor lock-in. Your event data lives on Amplitude's infrastructure. Exporting raw data requires the Enterprise plan. If you decide to switch tools after two years of instrumentation, the migration is painful. Dashboards, saved cohorts, and team workflows are all locked in
- Overkill for small teams. Amplitude's full power emerges when you have a dedicated analyst or data engineer building charts daily. A 5-person startup will use 20% of the features and pay for 100%. The complexity of the interface can actually slow down small teams who just need funnel analysis and retention curves
When to Choose Amplitude
- Your team has a dedicated analyst or growth engineer who will use advanced features daily
- You need predictive cohorts and ML-powered behavioral analysis
- Your organization has multiple products and needs portfolio-level analytics
- You're already using Segment or mParticle as your CDP and want native integration
- Session replay and feature flags are handled by other tools in your stack
PostHog: Deep Dive
PostHog launched in 2020 as an open-source alternative to Amplitude and Mixpanel. Its thesis: product teams shouldn't need five separate tools for analytics, session replay, feature flags, A/B testing, and surveys. PostHog bundles all of these into a single platform that you can self-host or use as a managed cloud service.
Strengths
- Data ownership. Self-hosted PostHog runs on your infrastructure. Event data stays in your ClickHouse database, never touching a third-party server. This simplifies compliance with GDPR, HIPAA, and data residency requirements. For teams in regulated industries (healthcare, fintech, government), this is often the deciding factor. The compliance conversation changes from "how do we ensure our vendor is compliant?" to "the data never leaves our infrastructure"
- All-in-one platform. Event analytics, session replay, feature flags, A/B testing, and user surveys in a single tool. No context-switching between Amplitude for analytics, LaunchDarkly for flags, and Hotjar for recordings. The data model is unified, so you can filter session recordings by the same cohorts you define in analytics. This integration is genuinely useful: "show me recordings of users who dropped off at step 3 of the checkout funnel" is one click, not a cross-tool workflow
- Transparent pricing. PostHog publishes its pricing calculator on the website. Usage-based pricing means you pay for what you use, with no minimum commitments or annual contracts. The free tier (1M events, 5K recordings) is genuinely useful for early-stage startups. You can run PostHog in production for months before paying anything
- Open source. The codebase is on GitHub (MIT license). You can inspect the code, contribute fixes, and extend functionality. No black-box algorithms. If PostHog disappears tomorrow, your self-hosted instance keeps running. The open-source community also means bugs get found and fixed by users, not just the PostHog team
- Developer-friendly. PostHog's API-first design, SDKs for every major platform, and SQL-based querying (HogQL) appeal to engineering-heavy teams. Feature flags integrate directly into application code with minimal overhead. The developer experience feels like using a tool built by engineers for engineers, not by a marketing team for executives
- Session replay included. Unlike Amplitude, PostHog includes session replay in every plan. You can watch exactly what users did, filtered by any analytics criteria. This closes the "what happened" to "why did it happen" loop within a single tool
Weaknesses
- Analytical depth gap. PostHog's funnel and retention tools cover 80% of use cases, but lack Amplitude's Pathfinder, Compass, and predictive cohort features. Teams doing sophisticated behavioral analysis will hit PostHog's ceiling faster. If you need to answer "which sequence of three actions most predicts 90-day retention," Amplitude's tools are better suited
- Self-hosting overhead. Running PostHog on your infrastructure means managing ClickHouse, Kafka, Redis, and PostgreSQL. This requires DevOps expertise and ongoing maintenance: upgrades, scaling, monitoring, and disaster recovery. The cloud version eliminates this, but then you lose the data ownership advantage that differentiates PostHog
- Newer platform. PostHog is four years old versus Amplitude's twelve. Some features feel less polished. The mobile SDKs have occasional reliability gaps. Documentation, while improving, sometimes lags behind feature releases. Edge cases that Amplitude solved years ago may still surface in PostHog
- Less mature integrations. PostHog integrates with major tools (Segment, Slack, webhooks) but lacks the deep CRM, marketing automation, and data warehouse integrations that Amplitude offers natively. If your growth stack depends on pushing cohorts to Braze or Iterable, Amplitude's integrations are more turnkey
- Scale challenges (self-hosted). Self-hosted PostHog handles billions of events, but the infrastructure cost and tuning effort increase significantly past 100 million monthly events. At that scale, managed cloud may be more cost-effective than self-hosting. ClickHouse tuning is not trivial
When to Choose PostHog
- Data privacy is a hard requirement (GDPR, HIPAA, data residency)
- You want analytics, session replay, feature flags, and A/B testing in one tool
- Your team is engineering-heavy and comfortable with self-hosting or API-first tools
- Cost transparency matters and you want usage-based pricing without sales calls
- You're a startup or mid-stage company that needs broad analytics capabilities without enterprise pricing
Head-to-Head: Key Decision Factors
Data Ownership
This is the single biggest differentiator. If your company handles sensitive user data (healthcare, fintech, education) or operates in jurisdictions with strict data residency laws, PostHog's self-hosting option resolves compliance questions that Amplitude's cloud model cannot. Amplitude offers EU data residency on enterprise plans, but the data is still processed by a third party.
For teams tracking product metrics in regulated environments, this distinction is not theoretical. It determines whether your legal team needs to review a 40-page DPA or can simply say "the data stays on our servers."
Cost at Scale
PostHog's usage-based pricing is typically 5-10x cheaper than Amplitude for equivalent event volumes. A Series B startup tracking 50 million events per month might pay $8,000-15,000/year with PostHog versus $60,000-120,000/year with Amplitude. The gap narrows at enterprise scale where Amplitude offers volume discounts, but PostHog consistently wins on pure cost.
The hidden cost with PostHog is self-hosting infrastructure. A ClickHouse cluster handling 100M+ events per month can cost $2,000-5,000/month in cloud compute. Factor this in when comparing total cost of ownership.
Analytical Maturity
Amplitude wins here. Its behavioral analysis tools are more refined, its cohort builder is more powerful, and its collaboration features (Notebooks, team dashboards) are better suited for organizations where analytics insights need to flow to non-technical stakeholders. If your activation rate strategy depends on identifying subtle behavioral patterns across millions of users, Amplitude's depth justifies the premium.
The gap is closing. PostHog ships features fast and has made significant progress on path analysis and cohort tools in 2025-2026. But for teams that need the depth today, Amplitude is still ahead.
Platform Breadth vs Depth
PostHog wins on breadth. Session replay, feature flags, and A/B testing are first-class features included in every plan. With Amplitude, you need separate tools (or separate Amplitude add-ons) for each. For a 10-person startup, consolidating five tools into one is a meaningful reduction in complexity, cost, and cognitive overhead.
Amplitude wins on depth. Each of its analysis modules (funnels, retention, pathfinder, compass) is deeper than PostHog's equivalent. For a 200-person company with a 5-person data team, that analytical depth creates insights that PostHog cannot yet match.
Experimentation
PostHog includes A/B testing and feature flags at no extra cost. The experimentation engine uses Bayesian statistics and integrates tightly with analytics. You define an experiment, PostHog tracks the variants, and you see results in the same dashboard where you track funnels and retention.
Amplitude's Experiment add-on is more sophisticated. Sequential testing lets you stop experiments early when results are conclusive. CUPED variance reduction increases statistical power, letting you detect smaller effects with fewer users. For teams running dozens of experiments simultaneously, these features matter. For teams running 2-3 experiments at a time, PostHog's engine is sufficient.
Migration Considerations
Amplitude to PostHog: PostHog provides migration guides and a Segment integration that makes parallel tracking straightforward. Run both tools for 2-4 weeks to validate data parity before cutting over. The main challenge is recreating saved charts, dashboards, and cohorts in PostHog. Budget 2-3 weeks for a team of 2-3 people to rebuild their analytics workflows.
PostHog to Amplitude: Less common, but doable via Segment or a direct event pipeline. The bigger adjustment is going from PostHog's unified platform (analytics + replay + flags) to Amplitude's analytics-only model, which requires adopting additional tools for session replay and feature management. Each additional tool means another vendor, another contract, and another integration to maintain.
Either direction: Instrumentation (the events you track) is tool-agnostic if you use a CDP like Segment. Without a CDP, switching requires updating SDK calls throughout your codebase. The event names and properties can stay the same, but the SDK initialization, user identification calls, and group analytics setup need to change.
Parallel running costs: Most teams run both tools in parallel for 2-4 weeks during migration. With PostHog's free tier covering 1M events, the cost of parallel running is usually just the Amplitude side. Plan for this in your migration budget.
The Verdict
PostHog is the better choice for most product teams in 2026. Its combination of broad functionality (analytics + replay + flags + experiments), transparent pricing, and data ownership options make it the pragmatic default. Startups, mid-stage companies, and privacy-conscious organizations get more value per dollar from PostHog than from any other analytics platform.
Choose Amplitude when your organization has dedicated analysts who need the depth of Pathfinder, Compass, and predictive cohorts. Choose Amplitude when portfolio analytics across multiple products is a requirement. Choose Amplitude when enterprise governance (data dictionary, taxonomy enforcement) matters at scale. Choose Amplitude when you need to push cohorts to marketing automation tools with native integrations.
The decision is not permanent. Both tools support Segment, so switching is possible (if painful). Start with the tool that fits your current stage and budget. For most teams, that is PostHog.
For teams still evaluating their analytics approach, the Product Analytics Handbook walks through instrumentation strategy, metric selection, and tool setup. The NPS Calculator benchmarks one of the most common metrics both tools track. And the complete guide to product metrics helps you decide what to measure before you pick a tool.