PostHog¶
What it is¶
An all-in-one product OS that includes product analytics, session replay, feature flags, and A/B testing.
What problem it solves¶
It helps teams understand how users interact with their applications and allows for data-driven product decisions.
Where it fits in the stack¶
Category: Process & Understanding / Product Analytics
Typical use cases¶
- Full-Funnel Analytics: Tracking user behavior from the first click to the final AI-generated response.
- A/B Testing AI Models: Comparing the performance and user satisfaction of different LLMs using feature flags.
- Session Replay: Watching recordings of users interacting with AI agents to identify friction points.
- Conversion Tracking: Measuring how AI features impact key business metrics like signups or purchases.
Strengths¶
- All-in-One: Combines analytics, session recording, and feature flagging in a single platform.
- AI Observability Dashboard: Specialized views for cost, latency, and error rates across different LLM providers.
- Integrated Session Recordings: Visualize UI changes triggered by LLM responses directly in the trace timeline.
- MCP Native: Supports the Model Context Protocol for querying product metrics from AI assistants.
- HogQL: Powerful, SQL-like query language for advanced data analysis.
Limitations¶
- Indexing Latency: In high-volume environments, there can be a slight delay before traces appear in the dashboard.
- Complexity: The sheer number of features can make the learning curve steeper for new users.
When to use it¶
- When you want to see the "big picture" of how AI features affect your overall product metrics.
- For teams that need built-in A/B testing and feature flagging to roll out AI changes safely.
- When you want to link specific AI traces back to actual user session recordings.
When not to use it¶
- If you only need deep, low-level AI engineering traces and don't care about broader product analytics.
- For extremely simple applications where a basic log aggregator (like Papertrail) would be enough.
LLM Features¶
- Cost Analysis: Granular tracking of LLM spend by model, user, feature, and time period.
- Trace Management: Full interaction timelines including generation and span events with multi-turn history.
- Model Comparison: Side-by-side performance and cost metrics for different models (e.g., GPT-5 vs Claude 4).
- OpenRouter Integration: Native support for receiving event logs from OpenRouter sessions to monitor model performance and costs.
Getting started¶
Installation¶
pip install posthog
Capturing LLM Events¶
import posthog
posthog.project_api_key = '<ph_project_api_key>'
posthog.host = 'https://us.i.posthog.com'
posthog.capture('user_id', 'llm_interaction', {
'model': 'gpt-4o',
'prompt_tokens': 150,
'completion_tokens': 200,
'total_cost': 0.005,
'user_feedback': 'helpful'
})
CLI examples¶
posthog-cli login¶
Authenticates the CLI with your PostHog instance:
posthog-cli login
posthog-cli query¶
Executes a HogQL (SQL) query against your PostHog data directly from the terminal:
posthog-cli query "SELECT event, count() FROM events GROUP BY event"
posthog-cli capture¶
Sends a manual event to PostHog for testing purposes:
posthog-cli capture --distinct-id user_123 --event test_event --properties '{"source": "cli"}'
API examples¶
Python (AI Trace Instrumentation)¶
PostHog now supports a more structured trace API for LLM monitoring:
import posthog
# Capture a full LLM generation trace
posthog.capture('user_123', '$ai_generation', {
'$ai_model': 'claude-3-5-sonnet',
'$ai_provider': 'anthropic',
'$ai_input_tokens': 150,
'$ai_output_tokens': 200,
'$ai_latency': 1.2,
'$ai_cost': 0.003,
'$ai_trace_id': 'trace-uuid-456',
'$ai_input': 'Summarize the latest sales data.',
'$ai_output': 'Summary: Sales are up 20%...'
})
Python (Feature Flag Evaluation)¶
import posthog
posthog.project_api_key = '<ph_project_api_key>'
# Check if a new AI model feature flag is enabled for a user
if posthog.feature_enabled('use-new-llm-model', 'user_123'):
# Logic for new model
pass
else:
# Logic for fallback model
pass
Related tools / concepts¶
Sources / references¶
Contribution Metadata¶
- Last reviewed: 2026-05-28
- Confidence: high