Hanzo Insights
Product analytics and feature flags
Understand user behavior with event analytics, session recording, funnels, and A/B testing. Roll out features safely with feature flags. Self-hosted and privacy-first.
Everything to Understand Your Users
Analytics, feature flags, and experiments in one platform.
Event Analytics
Track custom events and auto-captured interactions. Build funnels, retention charts, and user paths.
Feature Flags
Progressive rollouts with percentage-based targeting. Kill switches. Per-user and per-group flags.
Session Recording
Watch real user sessions. Click heatmaps, scroll depth, and rage click detection.
A/B Testing
Run experiments with statistical significance. Multi-variate tests. Auto-stop on significance.
Funnels & Paths
Visualize conversion funnels. Find where users drop off. Discover unexpected user journeys.
Cohort Analysis
Group users by behavior, properties, or signup date. Track retention across cohorts.
One Line to Instrument
import { InsightsProvider, useFeatureFlag } from "@hanzo/insights-react"
function App() {
return (
<InsightsProvider
apiKey="ins_proj_xxx"
host="https://insights.hanzo.ai"
>
<MyApp />
</InsightsProvider>
)
}
function MyApp() {
// Feature flags
const showNewUI = useFeatureFlag("new-dashboard")
// Track events
insights.capture("button_clicked", { variant: "primary" })
return showNewUI ? <NewDashboard /> : <OldDashboard />
}25% of compute goes back to open source
Every deployment is SBOM-verified. Contributors to Insights earn a share of compute revenue — transparent, on-chain, and customizable by the community.
Know Your Users
Free tier includes 1M events/month and unlimited feature flags.
Open source
Forked from PostHog (MIT). We track upstream and contribute fixes back where possible.