Analyze6 min read

Visitors and the visitor drawer

The Visitors page lists every distinct person seen in the range; opening one shows their whole journey, one session at a time.

mrkr.app/demo/visitors
The Visitors page listing individual visitors with their source, device, session count and last seen time.
Every visitor in the range. Opening one shows their full journey.

The visitor list

Each row shows first-seen and last-seen times, total sessions, total pageviews, and whether the visitor has ever completed a conversion, aggregated from every session tied to their visitor id. The list loads up to 100 visitors at a time, most recently active first.

How a "visitor" is identified depends on the site's tracking mode:

Cookieless (default)
The visitor id is a SHA-256 hash of the visitor's IP, user agent, site id, and a daily-rotating salt. Because the salt rotates every UTC day, the same real person gets a different visitor id tomorrow: there's no cookie and nothing persisted client-side. The display name reflects this: cookieless visitors show as a short "Visitor #xxxxxxx" handle rather than a name, since a stable-looking name would misleadingly imply long-term identity.
Cookie mode
The visitor id is a persistent client-supplied id, so the same browser is recognised as the same visitor across sessions and weeks. These get a friendly, deterministic handle (an adjective and an animal, like "Calm Falcon") derived from their id, so the same person shows the same name every time you look.
Note

Cookieless is Mrkr's default tracking mode. Switching a site to cookie mode is a setting under Configure: see Cookieless vs. cookie mode for what changes.

The visitor drawer: journey timeline

Opening a visitor shows their sessions, each with a timeline mixing pageviews, outbound clicks and downloads, and any custom events they fired, in order, with timestamps, so you can read a session as a narrative rather than a table of rows. Mrkr does not autocapture in-page clicks, so a timeline shows the pages someone moved through and the things you chose to instrument, not every button they pressed.

Scroll depth and tracked events

Each session in the drawer shows a scroll-depth meter for its deepest point reached (25/50/75/100%) when the page reported one, and a count of any custom events tracked during that session. The visitor-level summary rolls these up into an average and maximum scroll depth, and a total tracked-event count.

Any session that was recorded has a Replay link straight into the session-replay player, so you can go from "what did this visitor do" to "watch exactly what they did" in one click. See Session replay for what gets recorded and how masking works.