Exploring Web analytics live traffic
The Web analytics Live tab (/web/live) shows real-time activity over a 30-minute sliding
window plus a 60-second "users online" count. It is the place to answer "what is happening
on my site right now?" — pageviews, named bots, devices, geo, top paths, top referrers, and
a live event feed.
This skill teaches you (the agent) how to:
- recognize a request that belongs on the Live tab
- read the tile model (what each card shows, where the data comes from)
- manipulate the only filter that exists (host)
- build product-analytics insights that match a Live tile when the user wants
longer time ranges or deeper drill-down than the live window offers
The Live tab is not a HogQL playground — its data comes from a livestream backed by
short HogQL backfills. When the user wants to query "right now" data with HogQL, point
them at the tab; when they want historical breakdowns, build an insight with the patterns
below.
When to use this skill
Use this skill when the user:
- asks "who is on my site right now?", "what is happening live?", "show me live traffic"
- mentions the "Live" tab, the "Live dashboard", or the live page (
/web/live)
- asks about live bot traffic ("which bots are crawling me?", "is GPTBot scraping us?")
- wants to filter live traffic by domain / host
- wants to compare what they see on the Live tab to a longer time window — e.g.
"the live tab shows GPTBot is hammering us, can you give me a 7-day chart of that?"
Do not use this skill for non-realtime web analytics work — for that, use the standard
Web analytics tab (/web).
Tab structure
URL: /web/live
The tab has two filter affordances and a grid of tiles. Date range is fixed: 30 minutes
sliding window for everything except "Users online" (last 60 seconds).
Filters
There is only one filter on the live tab: the host (domain) selector.
- It comes from
webAnalyticsFilterLogic.selectedHost.
- It is shared with the rest of Web analytics, so changing it on
/web propagates to
/web/live and vice-versa.
- It is gated by feature flag
WEB_ANALYTICS_LIVE_DOMAIN_FILTER. If the flag is off, no
host filter UI is rendered and all tiles show data across every domain.
- Setting the host filter narrows: the SSE stream, the HogQL backfill queries (so the
initial 30 min is host-scoped), and the "users online" count.
- There is no date picker, no compare control, no property filters, no test-account
filter on the Live tab. Do not promise the user controls that don't exist.
When the user asks "filter live traffic by domain <host>", direct them to the Domain
selector at the top of the Live tab. There is no URL param to set it directly — it
persists in localStorage via webAnalyticsFilterLogic.
Stat cards (top strip)
| Card |
What |
Window |
| Users online |
Distinct device IDs seen in the last 60 seconds |
60s |
| Unique visitors |
Distinct device IDs in the last 30 min |
30m |
| Pageviews |
$pageview count in the last 30 min |
30m |
Content cards
| Card |
What |
Notes |
| Active users per minute |
Bar chart, new vs returning visitors |
last 30 min |
| Top pages |
Animated leaderboard, $pathname + view count |
top 10, 30 min |
| Top referrers |
Animated leaderboard, $referring_domain |
top 10, 30 min |
| Devices |
Breakdown bars, $device_type |
top 6 + Other |
| Browsers |
Breakdown bars with logos, $browser |
top 6 + Other |
| Top countries |
Breakdown bars, $geoip_country_code |
top 6 + Other; replaced by a Country/City tab card if WEB_ANALYTICS_LIVE_CITY_BREAKDOWN is on |
| Bot requests per minute |
Bar chart, bot events / minute |
flag WEB_ANALYTICS_BOT_ANALYSIS |
| Bot traffic |
Named bots ranked by event share, with category tag |
flag WEB_ANALYTICS_BOT_ANALYSIS; rows are clickable and open an insight for that specific bot |
| Countries (world map) |
SVG world map heat |
flag WEB_ANALYTICS_LIVE_MAP |
| Live events |
Streamed event feed (event, person, URL, timestamp) |
last 50 events |
Every tile (except the live event feed and world map) has an "Open as new insight"
button that opens a 7-day Trends query in product analytics. The bot traffic tile rows
are also individually clickable — clicking a bot row opens a single-bot trend.
Bot detection model
Bots are detected server-side. Three virtual properties are attached to the event before
it lands in ClickHouse:
$virt_is_bot — boolean, true if classified as a bot
$virt_bot_name — string, the bot's display name (e.g. Googlebot, GPTBot,
Claude, Lighthouse, HeadlessChrome)
$virt_traffic_category — string, the category key:
ai_crawler, ai_search, ai_assistant, search_crawler, seo_crawler,
social_crawler, monitoring, http_client, headless_browser, no_user_agent,
regular
The Live bot tiles count "bot-eligible" events: $pageview, $pageleave, $screen,
$http_log, $autocapture. $http_log is included because most bots emit server-side
HTTP logs rather than JS pageviews.
Building product-analytics queries that mirror the Live tab
When the user wants a longer window, a saved insight, a dashboard tile, or to share a
view of what's on the Live tab, build a Trends insight. The "Open as new insight"
buttons in the UI use exactly these recipes:
Bot traffic breakdown (matches the bot tile header)
A single chart of all bots over time, broken down by name. This is the canonical
"who's crawling me?" view.
{
"kind": "TrendsQuery",
"interval": "hour",
"dateRange": { "date_from": "-7d" },
"series": [
{
"kind": "GroupNode",
"custom_name": "Requests",
"operator": "OR",
"math": "total",
"nodes": [
{ "kind": "EventsNode", "event": "$pageview", "math": "total" },
{ "kind": "EventsNode", "event": "$pageleave", "math": "total" },
{ "kind": "EventsNode", "event": "$screen", "math": "total" },
{ "kind": "EventsNode", "event": "$http_log", "math": "total" },
{ "kind": "EventsNode", "event": "$autocapture", "math": "total" }
]
}
],
"properties": [{ "key": "$virt_is_bot", "value": ["true"], "operator": "exact", "type": "event" }],
"breakdownFilter": {
"breakdown": "$virt_bot_name",
"breakdown_type": "event",
"breakdown_limit": 25
},
"trendsFilter": { "display": "ActionsBarValue" }
}
Single bot drill-down (matches a clicked bot row)
{
"kind": "TrendsQuery",
"interval": "hour",
"dateRange": { "date_from": "-7d" },
"series": [
/* same combined "Requests" GroupNode as above */
],
"properties": [
{ "key": "$virt_is_bot", "value": ["true"], "operator": "exact", "type": "event" },
{ "key": "$virt_bot_name", "value": ["GPTBot"], "operator": "exact", "type": "event" },
{ "key": "$virt_traffic_category", "value": ["ai_crawler"], "operator": "exact", "type": "event" }
],
"trendsFilter": { "display": "ActionsLineGraph" }
}
The category filter is optional — include it when the user asks about a specific
bot+category combo (Lighthouse · headless_browser is a different signal from
Lighthouse · monitoring).
Bot category breakdown (matches the bot events chart tile)
Use breakdown by $virt_traffic_category instead of $virt_bot_name when the user
wants "AI crawlers vs SEO crawlers vs everything else" rather than per-bot rows.
Top pages / referrers / devices / browsers / countries
For non-bot tiles, use $pageview with math: unique_users, breakdown by the
underlying property:
| Tile |
breakdown property |
display |
| Top pages |
$pathname |
ActionsBarValue |
| Top referrers |
$referring_domain |
ActionsBarValue |
| Devices |
$device_type |
ActionsPie |
| Browsers |
$browser |
ActionsPie |
| Countries |
$geoip_country_code |
WorldMap |
Always inherit the live tab's host filter when the user is asking about a specific
domain — add { "key": "$host", "value": ["<host>"], "operator": "exact", "type": "event" }
to properties.
Defaults to use
dateRange.date_from: -7d unless the user names a window — the live view itself
is 30 min, but the user is almost always asking about a longer window when they
request an insight version.
interval: hour for 7-day windows, minute only for windows under a day,
day for windows beyond 14 days.
- Always inherit the host filter when one is set on the Live tab. Don't drop it
silently — that changes the answer.
Common requests and the right move
| User says |
Right move |
| "What's happening on the site right now?" |
Send them to /web/live |
"Filter live traffic to example.com" |
Use the Domain selector at top of /web/live |
| "Show me bots crawling us in the last 30 min" |
/web/live → Bot traffic tile |
| "Show me bots crawling us this week" |
Build the "Bot traffic breakdown" insight above with date_from: -7d |
| "How much is GPTBot hitting us?" |
Build the "Single bot drill-down" insight, set $virt_bot_name to GPTBot |
| "Why is the live tab showing X but my dashboard shows Y?" |
The live tab is a 30-min sliding window over events; dashboards aggregate over the picked range. They are not directly comparable beyond the last 30 min. |
| "Add a date range to the live tab" |
The Live tab has no date picker — for ranges, build a Trends insight using the patterns above |
| "Filter live traffic by browser / device / country" |
Not supported — only the host filter exists. Build a Trends insight with the relevant breakdown + filter instead |
Gotchas
- Bot virtual properties (
$virt_*) only exist on events processed by the bot
classification step. They are not retroactive — events from before the classifier
shipped will not have them. Keep dateRange.date_from within the last few months
for reliable bot results.
$http_log events come from server-side log capture, not from posthog-js. If a
project does not emit $http_log, bots that don't run JS (most crawlers) will be
invisible to the bot tiles.
- The 30-minute window is a sliding aggregation over an in-memory buffer in the
browser — refreshing the page replays the backfill HogQL, not the SSE stream. Do
not interpret a brief "0" right after page load as a real drop.
- The host filter strips the protocol — pass
example.com, not https://example.com.
- Tile order is persisted per-team in
localStorage (under feature flag
WEB_ANALYTICS_LIVE_EDIT_LAYOUT). If a user's layout looks different from yours,
it is not a bug.
1---2name: exploring-live-traffic3description: Inspects PostHog Web analytics Live tab data — current users online, last-30-minutes pageviews, top pages, referrers, devices, browsers, countries, bot traffic, and the per-minute bot/users charts. Use when the user asks "who is on my site right now?", "what is happening live?", "what bots are crawling me?", asks about the "live tab" / "live dashboard", wants live numbers (last 30 min), or wants help filtering or drilling into the live view. Also covers building product-analytics insights that mirror what the tiles show.4---5
6# Exploring Web analytics live traffic
7
8The Web analytics Live tab (`/web/live`) shows real-time activity over a 30-minute sliding
9window plus a 60-second "users online" count. It is the place to answer "what is happening
10on my site right now?" — pageviews, named bots, devices, geo, top paths, top referrers, and
11a live event feed.
12
13This skill teaches you (the agent) how to:
14
15- recognize a request that belongs on the Live tab
16- read the tile model (what each card shows, where the data comes from)
17- manipulate the only filter that exists (host)
18- build product-analytics insights that match a Live tile when the user wants
19 longer time ranges or deeper drill-down than the live window offers
20
21The Live tab is **not** a HogQL playground — its data comes from a livestream backed by
22short HogQL backfills. When the user wants to query "right now" data with HogQL, point
23them at the tab; when they want historical breakdowns, build an insight with the patterns
24below.
25
26## When to use this skill
27
28Use this skill when the user:
29
30- asks "who is on my site right now?", "what is happening live?", "show me live traffic"
31- mentions the "Live" tab, the "Live dashboard", or the live page (`/web/live`)
32- asks about live bot traffic ("which bots are crawling me?", "is GPTBot scraping us?")
33- wants to filter live traffic by domain / host
34- wants to compare what they see on the Live tab to a longer time window — e.g.
35 "the live tab shows GPTBot is hammering us, can you give me a 7-day chart of that?"
36
37Do not use this skill for non-realtime web analytics work — for that, use the standard
38Web analytics tab (`/web`).
39
40## Tab structure
41
42URL: `/web/live`
43
44The tab has two filter affordances and a grid of tiles. Date range is **fixed**: 30 minutes
45sliding window for everything except "Users online" (last 60 seconds).
46
47### Filters
48
49There is only **one** filter on the live tab: the host (domain) selector.
50
51- It comes from `webAnalyticsFilterLogic.selectedHost`.
52- It is **shared with the rest of Web analytics**, so changing it on `/web` propagates to
53 `/web/live` and vice-versa.
54- It is gated by feature flag `WEB_ANALYTICS_LIVE_DOMAIN_FILTER`. If the flag is off, no
55 host filter UI is rendered and all tiles show data across every domain.
56- Setting the host filter narrows: the SSE stream, the HogQL backfill queries (so the
57 initial 30 min is host-scoped), and the "users online" count.
58- There is no date picker, no compare control, no property filters, no test-account
59 filter on the Live tab. Do not promise the user controls that don't exist.
60
61When the user asks "filter live traffic by domain `<host>`", direct them to the **Domain**
62selector at the top of the Live tab. There is no URL param to set it directly — it
63persists in `localStorage` via `webAnalyticsFilterLogic`.
64
65### Stat cards (top strip)
66
67| Card | What | Window |
68| --------------- | ----------------------------------------------- | ------ |
69| Users online | Distinct device IDs seen in the last 60 seconds | 60s |
70| Unique visitors | Distinct device IDs in the last 30 min | 30m |
71| Pageviews | `$pageview` count in the last 30 min | 30m |
72
73### Content cards
74
75| Card | What | Notes |
76| ----------------------- | --------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
77| Active users per minute | Bar chart, new vs returning visitors | last 30 min |
78| Top pages | Animated leaderboard, `$pathname` + view count | top 10, 30 min |
79| Top referrers | Animated leaderboard, `$referring_domain` | top 10, 30 min |
80| Devices | Breakdown bars, `$device_type` | top 6 + Other |
81| Browsers | Breakdown bars with logos, `$browser` | top 6 + Other |
82| Top countries | Breakdown bars, `$geoip_country_code` | top 6 + Other; replaced by a Country/City tab card if `WEB_ANALYTICS_LIVE_CITY_BREAKDOWN` is on |
83| Bot requests per minute | Bar chart, bot events / minute | flag `WEB_ANALYTICS_BOT_ANALYSIS` |
84| Bot traffic | Named bots ranked by event share, with category tag | flag `WEB_ANALYTICS_BOT_ANALYSIS`; rows are clickable and open an insight for that specific bot |
85| Countries (world map) | SVG world map heat | flag `WEB_ANALYTICS_LIVE_MAP` |
86| Live events | Streamed event feed (event, person, URL, timestamp) | last 50 events |
87
88Every tile (except the live event feed and world map) has an "Open as new insight"
89button that opens a 7-day Trends query in product analytics. The bot traffic tile rows
90are also individually clickable — clicking a bot row opens a single-bot trend.
91
92## Bot detection model
93
94Bots are detected server-side. Three virtual properties are attached to the event before
95it lands in ClickHouse:
96
97- `$virt_is_bot` — boolean, `true` if classified as a bot
98- `$virt_bot_name` — string, the bot's display name (e.g. `Googlebot`, `GPTBot`,
99 `Claude`, `Lighthouse`, `HeadlessChrome`)
100- `$virt_traffic_category` — string, the category key:
101 `ai_crawler`, `ai_search`, `ai_assistant`, `search_crawler`, `seo_crawler`,
102 `social_crawler`, `monitoring`, `http_client`, `headless_browser`, `no_user_agent`,
103 `regular`
104
105The Live bot tiles count "bot-eligible" events: `$pageview`, `$pageleave`, `$screen`,
106`$http_log`, `$autocapture`. `$http_log` is included because most bots emit server-side
107HTTP logs rather than JS pageviews.
108
109## Building product-analytics queries that mirror the Live tab
110
111When the user wants a longer window, a saved insight, a dashboard tile, or to share a
112view of what's on the Live tab, build a Trends insight. The "Open as new insight"
113buttons in the UI use exactly these recipes:
114
115### Bot traffic breakdown (matches the bot tile header)
116
117A single chart of all bots over time, broken down by name. This is the canonical
118"who's crawling me?" view.
119
120```json
121{
122 "kind": "TrendsQuery",
123 "interval": "hour",
124 "dateRange": { "date_from": "-7d" },
125 "series": [
126 {
127 "kind": "GroupNode",
128 "custom_name": "Requests",
129 "operator": "OR",
130 "math": "total",
131 "nodes": [
132 { "kind": "EventsNode", "event": "$pageview", "math": "total" },
133 { "kind": "EventsNode", "event": "$pageleave", "math": "total" },
134 { "kind": "EventsNode", "event": "$screen", "math": "total" },
135 { "kind": "EventsNode", "event": "$http_log", "math": "total" },
136 { "kind": "EventsNode", "event": "$autocapture", "math": "total" }
137 ]
138 }
139 ],
140 "properties": [{ "key": "$virt_is_bot", "value": ["true"], "operator": "exact", "type": "event" }],
141 "breakdownFilter": {
142 "breakdown": "$virt_bot_name",
143 "breakdown_type": "event",
144 "breakdown_limit": 25
145 },
146 "trendsFilter": { "display": "ActionsBarValue" }
147}
148```
149
150### Single bot drill-down (matches a clicked bot row)
151
152```json
153{
154 "kind": "TrendsQuery",
155 "interval": "hour",
156 "dateRange": { "date_from": "-7d" },
157 "series": [
158 /* same combined "Requests" GroupNode as above */
159 ],
160 "properties": [
161 { "key": "$virt_is_bot", "value": ["true"], "operator": "exact", "type": "event" },
162 { "key": "$virt_bot_name", "value": ["GPTBot"], "operator": "exact", "type": "event" },
163 { "key": "$virt_traffic_category", "value": ["ai_crawler"], "operator": "exact", "type": "event" }
164 ],
165 "trendsFilter": { "display": "ActionsLineGraph" }
166}
167```
168
169The category filter is optional — include it when the user asks about a specific
170bot+category combo (`Lighthouse · headless_browser` is a different signal from
171`Lighthouse · monitoring`).
172
173### Bot category breakdown (matches the bot events chart tile)
174
175Use breakdown by `$virt_traffic_category` instead of `$virt_bot_name` when the user
176wants "AI crawlers vs SEO crawlers vs everything else" rather than per-bot rows.
177
178### Top pages / referrers / devices / browsers / countries
179
180For non-bot tiles, use `$pageview` with `math: unique_users`, breakdown by the
181underlying property:
182
183| Tile | breakdown property | display |
184| ------------- | --------------------- | ----------------- |
185| Top pages | `$pathname` | `ActionsBarValue` |
186| Top referrers | `$referring_domain` | `ActionsBarValue` |
187| Devices | `$device_type` | `ActionsPie` |
188| Browsers | `$browser` | `ActionsPie` |
189| Countries | `$geoip_country_code` | `WorldMap` |
190
191Always inherit the live tab's host filter when the user is asking about a specific
192domain — add `{ "key": "$host", "value": ["<host>"], "operator": "exact", "type": "event" }`
193to `properties`.
194
195### Defaults to use
196
197- `dateRange.date_from`: `-7d` unless the user names a window — the live view itself
198 is 30 min, but the user is almost always asking about a longer window when they
199 request an insight version.
200- `interval`: `hour` for 7-day windows, `minute` only for windows under a day,
201 `day` for windows beyond 14 days.
202- Always inherit the host filter when one is set on the Live tab. Don't drop it
203 silently — that changes the answer.
204
205## Common requests and the right move
206
207| User says | Right move |
208| --------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
209| "What's happening on the site right now?" | Send them to `/web/live` |
210| "Filter live traffic to `example.com`" | Use the Domain selector at top of `/web/live` |
211| "Show me bots crawling us in the last 30 min" | `/web/live` → Bot traffic tile |
212| "Show me bots crawling us this week" | Build the "Bot traffic breakdown" insight above with `date_from: -7d` |
213| "How much is GPTBot hitting us?" | Build the "Single bot drill-down" insight, set `$virt_bot_name` to `GPTBot` |
214| "Why is the live tab showing X but my dashboard shows Y?" | The live tab is a 30-min sliding window over events; dashboards aggregate over the picked range. They are not directly comparable beyond the last 30 min. |
215| "Add a date range to the live tab" | The Live tab has no date picker — for ranges, build a Trends insight using the patterns above |
216| "Filter live traffic by browser / device / country" | Not supported — only the host filter exists. Build a Trends insight with the relevant breakdown + filter instead |
217
218## Gotchas
219
220- Bot virtual properties (`$virt_*`) only exist on events processed by the bot
221 classification step. They are not retroactive — events from before the classifier
222 shipped will not have them. Keep `dateRange.date_from` within the last few months
223 for reliable bot results.
224- `$http_log` events come from server-side log capture, not from `posthog-js`. If a
225 project does not emit `$http_log`, bots that don't run JS (most crawlers) will be
226 invisible to the bot tiles.
227- The 30-minute window is a sliding aggregation over an in-memory buffer in the
228 browser — refreshing the page replays the backfill HogQL, not the SSE stream. Do
229 not interpret a brief "0" right after page load as a real drop.
230- The host filter strips the protocol — pass `example.com`, not `https://example.com`.
231- Tile order is persisted per-team in `localStorage` (under feature flag
232 `WEB_ANALYTICS_LIVE_EDIT_LAYOUT`). If a user's layout looks different from yours,
233 it is not a bug.