identify() and what they did with track(), that data powers Segments, active-user and retention trends, Funnels, and Cohorts — and every band, tile, and step deep-links straight into the matching recordings.
This page is the map. It covers the events model that feeds everything, the two analytics views that live on your Overview home page (Segments and Activity), and how those connect to Funnels and Cohorts.
You don’t need any extra SDK to get started. The moment the Replayfy SDK is recording, platform / browser / country / device breakdowns and active-user trends populate on their own.
identify() and track() make them far richer.The events model
Two SDK calls are the raw material for every analytic in Replayfy.identify() — who the user is
Callidentify() as soon as you know who someone is (typically right after login). Replayfy promotes email, name, plan, and picture (the user’s avatar URL, alias avatar) to first-class fields and keeps every other trait as a searchable property on the user.
track() — what the user did
Usetrack() for the moments that matter to your product: a signup, a checkout, a plan upgrade, a feature used for the first time. Each event has a name and an optional bag of properties.
checkout_completed” and build Funnels and Cohorts from those events. For the full guide to instrumenting events, see Track custom events.
The SDK is configured with your publishable key (
apiKey: "rpl_pk_YOUR_KEY") and your ingest host (apiHost: "https://us.replayfy.app"). The publishable key is safe to ship in client apps. Grab yours from Settings → Install in the dashboard. Server-side keys (rpl_sk_…) are only for backend annotation and never belong in client code.Segments
Segments live on your Overview page and answer “where do my sessions come from?” as three distribution bands over the selected time window:- Platform — web vs. iOS vs. Android vs. the rest
- Browser — Chrome, Safari, Firefox, and so on
- Country — resolved from each session, shown with its flag
Jump from a band to the recordings
Segments aren’t a dead-end chart — they’re a way into the sessions.1
Open a full breakdown
Click a band (Platform, Browser, or Country) to open its breakdown drawer — a complete table of every value with its share and session count, not just the top slices shown inline.
2
Click a single value
Click any legend row — say the web platform row, or Nigeria in the Country band — and Replayfy takes you straight to the recordings list, pre-filtered to exactly those sessions (
platform:web, country:NG, and so on).3
Watch and refine
From there you’re in the standard recordings view: sort, add more filters, and open any session to watch it. See Session Replay for the player.
A brand-new workspace with no sessions yet shows “No platform data reported yet” rather than a fabricated chart. Bands appear as soon as real sessions arrive.
Active users & retention
The Activity section on your Overview turns engagement into a set of small-multiple tiles plus one focused trend chart. Every value is computed from your real session data — nothing here is a placeholder.The tiles
Beneath the tiles, four derived stats summarize health at a glance:
- Stickiness — DAU ÷ MAU
- Sessions per user — over the window
- Avg. session — mean session length
- New : returning — the split of active users
— rather than inventing a figure.
The trend chart
Click a tile to drive the chart below it, then use the Filter button to shape a single analytics query. Every control queries live data:
The chart leads with the total and layers each breakdown value as a legend-toggled overlay line, so a “WAU by Plan” or “New users by Country” view is two clicks away.
Where the suite connects
Segments and Activity are the top of the funnel — literally. The same events feed the two deeper tools:Funnels
Chain your
track() events (and page visits) into an ordered funnel to see step-by-step conversion, drop-off, and the time between steps — then watch the sessions of the people who dropped.Cohorts
Group users by
identify() traits (e.g. plan = enterprise) or by behavior (e.g. fired checkout_completed in the last 7 days) and reuse those cohorts as filters everywhere.- Segments answer what kinds of sessions do I have right now?
- Activity answers is engagement growing, and are people coming back?
- Funnels answer where in a flow are people dropping off?
- Cohorts answer which people should I focus on?
Event naming best practices
Good analytics start with disciplined event names. Because names and properties become filters, funnel steps, and cohort rules, a little consistency up front pays off everywhere.Use stable, snake_case names
Use stable, snake_case names
Pick a name once and keep it.
checkout_completed should mean the same thing forever. Renaming an event splits its history into two, and any funnel or cohort built on the old name silently stops matching. Lowercase snake_case (plan_upgraded, invite_sent) keeps names readable and avoids the casing drift you get from mixing checkoutDone, Checkout Done, and checkout-complete.Name the action, in the past tense
Name the action, in the past tense
Prefer
object_verb in the past tense — signup_completed, project_created, file_exported. It reads naturally in a funnel (“signup_started → signup_completed”) and keeps related events sorted together in autocomplete.Put the variety in properties, not the name
Put the variety in properties, not the name
Send one
plan_upgraded event with a { plan: "pro" } property, not separate upgraded_to_pro / upgraded_to_team events. Properties keep the event count small and let you break a single event down by any dimension later. Reuse the same property keys and value shapes across events (plan is always the same set of strings) so breakdowns line up.Related
Track custom events
The complete guide to
track() and identify().Funnels
Turn events into step-by-step conversion analysis.
Cohorts
Group users by traits and behavior.