Track a signup funnel
A full signup funnel — pageview, CTA click, form view, signup, activation — with drop-off queries.
$pageview (landing) → clicked_cta → viewed_signup_form → signup → activatedStep 1 — instrument the funnel
Landing page (auto)
CTA click
import { track } from "@millimetric/track";
export function HeroCTA() {
return (
<button
onClick={() => track("clicked_cta", { location: "hero", label: "Start free" })}
>
Start free
</button>
);
}Form view (when the signup form renders)
Signup itself
Activation
Step 2 — verify in the dashboard
Step 3 — funnel drop-off via /v1/stats
Step 4 — the proper funnel query (ClickHouse)
Step 5 — break down by source
Common pitfalls
See also
Last updated
Was this helpful?