diff --git a/.env.example b/.env.example new file mode 100644 index 0000000000000..65971db798cd3 --- /dev/null +++ b/.env.example @@ -0,0 +1 @@ +MAPLIBRE_STYLE_URL=https://api.example.com/style.json?key=mykey \ No newline at end of file diff --git a/docker-compose.base.yml b/docker-compose.base.yml index dba92a0046034..f1d1a3f658e64 100644 --- a/docker-compose.base.yml +++ b/docker-compose.base.yml @@ -89,6 +89,18 @@ services: command: ./bin/start-backend & ./bin/start-frontend restart: on-failure + capture: + image: ghcr.io/posthog/capture:main + restart: on-failure + environment: + ADDRESS: '0.0.0.0:3000' + KAFKA_TOPIC: 'events_plugin_ingestion' + KAFKA_HOSTS: 'kafka:9092' + REDIS_URL: 'redis://redis:6379/' + depends_on: + - redis + - kafka + plugins: command: ./bin/plugin-server --no-restart-loop restart: on-failure diff --git a/docker-compose.dev-full.yml b/docker-compose.dev-full.yml index ba4a40185c7d6..6d62266e6b8a1 100644 --- a/docker-compose.dev-full.yml +++ b/docker-compose.dev-full.yml @@ -89,6 +89,15 @@ services: environment: - DEBUG=1 + capture: + extends: + file: docker-compose.base.yml + service: capture + ports: + - 3000:3000 + environment: + - DEBUG=1 + plugins: extends: file: docker-compose.base.yml diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 2045dee0804c5..365ec2c5b452d 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -72,6 +72,17 @@ services: - '1080:1080' - '1025:1025' + # Optional capture + capture: + profiles: ['capture-rs'] + extends: + file: docker-compose.base.yml + service: capture + ports: + - 3000:3000 + environment: + - DEBUG=1 + # Temporal containers elasticsearch: extends: diff --git a/frontend/__snapshots__/components-map--unavailable.png b/frontend/__snapshots__/components-map--unavailable.png new file mode 100644 index 0000000000000..6e49827d9e782 Binary files /dev/null and b/frontend/__snapshots__/components-map--unavailable.png differ diff --git a/frontend/__snapshots__/lemon-ui-icons--shelf-a.png b/frontend/__snapshots__/lemon-ui-icons--shelf-a.png index 9404063d1c5a8..7637d61913028 100644 Binary files a/frontend/__snapshots__/lemon-ui-icons--shelf-a.png and b/frontend/__snapshots__/lemon-ui-icons--shelf-a.png differ diff --git a/frontend/__snapshots__/lemon-ui-icons--shelf-c.png b/frontend/__snapshots__/lemon-ui-icons--shelf-c.png index 73ebbff721b70..cbfeb5aead477 100644 Binary files a/frontend/__snapshots__/lemon-ui-icons--shelf-c.png and b/frontend/__snapshots__/lemon-ui-icons--shelf-c.png differ diff --git a/frontend/src/globals.d.ts b/frontend/src/globals.d.ts index 17bc65680725a..df0e0e81664ea 100644 --- a/frontend/src/globals.d.ts +++ b/frontend/src/globals.d.ts @@ -6,6 +6,7 @@ declare global { JS_POSTHOG_API_KEY?: string JS_POSTHOG_HOST?: string JS_POSTHOG_SELF_CAPTURE?: boolean + JS_MAPLIBRE_STYLE_URL?: string JS_CAPTURE_TIME_TO_SEE_DATA?: boolean JS_KEA_VERBOSE_LOGGING?: boolean posthog?: posthog diff --git a/frontend/src/lib/components/Errors/ErrorDisplay.tsx b/frontend/src/lib/components/Errors/ErrorDisplay.tsx index 46a7e4b74a05c..4c14a6e44412a 100644 --- a/frontend/src/lib/components/Errors/ErrorDisplay.tsx +++ b/frontend/src/lib/components/Errors/ErrorDisplay.tsx @@ -2,8 +2,8 @@ import { EventType, RecordingEventType } from '~/types' import { LemonTag } from 'lib/lemon-ui/LemonTag/LemonTag' import { IconFlag } from 'lib/lemon-ui/icons' import clsx from 'clsx' -import posthog from 'posthog-js' import { Link } from 'lib/lemon-ui/Link' +import posthog from 'posthog-js' interface StackFrame { filename: string @@ -43,7 +43,7 @@ function StackTrace({ rawTrace }: { rawTrace: string }): JSX.Element | null { ) } catch (e: any) { //very meta - posthog.captureException(e, { tag: 'error-display-stack-trace' }) + posthog.capture('Cannot parse stack trace in Exception event', { tag: 'error-display-stack-trace', e }) return Error parsing stack trace } } diff --git a/frontend/src/lib/components/Map/Map.stories.tsx b/frontend/src/lib/components/Map/Map.stories.tsx new file mode 100644 index 0000000000000..09576ec0ed50c --- /dev/null +++ b/frontend/src/lib/components/Map/Map.stories.tsx @@ -0,0 +1,31 @@ +import type { Meta, StoryObj } from '@storybook/react' +import { Marker } from 'maplibre-gl' + +import { Map, MapComponent } from './Map' + +const meta: Meta = { + title: 'Components/Map', + component: Map, + tags: ['autodocs'], +} +type Story = StoryObj + +const coordinates: [number, number] = [0.119167, 52.205276] + +export const Unavailable: Story = {} + +export const Basic: Story = { + render: (args) => ( + + ), + args: { + center: coordinates, + markers: [new Marker({ color: 'var(--primary)' }).setLngLat(coordinates)], + className: 'h-60', + }, +} + +export default meta diff --git a/frontend/src/lib/components/Map/Map.tsx b/frontend/src/lib/components/Map/Map.tsx new file mode 100644 index 0000000000000..0b72d136d04d4 --- /dev/null +++ b/frontend/src/lib/components/Map/Map.tsx @@ -0,0 +1,64 @@ +import { useEffect, useRef } from 'react' +import { Map as RawMap, Marker } from 'maplibre-gl' +import useResizeObserver from 'use-resize-observer' + +import 'maplibre-gl/dist/maplibre-gl.css' + +/** Latitude and longtitude in degrees (+lat is east, -lat is west, +lon is south, -lon is north). */ +export interface MapProps { + /** Coordinates to center the map on by default. */ + center: [number, number] + /** Markers to show. */ + markers?: Marker[] + /** Map container class names. */ + className?: string + /** The map's MapLibre style. This must be a JSON object conforming to the schema described in the MapLibre Style Specification, or a URL to such JSON. */ + mapLibreStyleUrl: string +} + +export function Map({ className, ...rest }: Omit): JSX.Element { + if (!window.JS_MAPLIBRE_STYLE_URL) { + return ( +
+

Map unavailable

+

+ The MAPLIBRE_STYLE_URL setting is not defined. Please configure this setting with a + valid MapLibre Style URL to display maps. +

+
+ ) + } + + return +} + +export function MapComponent({ center, markers, className, mapLibreStyleUrl }: MapProps): JSX.Element { + const mapContainer = useRef(null) + const map = useRef(null) + + useEffect(() => { + map.current = new RawMap({ + container: mapContainer.current as HTMLElement, + style: mapLibreStyleUrl, + center, + zoom: 4, + maxZoom: 10, + }) + if (markers) { + for (const marker of markers) { + marker.addTo(map.current) + } + } + }, []) + + useResizeObserver({ + ref: mapContainer, + onResize: () => { + if (map.current) { + map.current.resize() + } + }, + }) + + return
+} diff --git a/frontend/src/lib/constants.tsx b/frontend/src/lib/constants.tsx index 4e49a48dbbb7c..6343b341614ef 100644 --- a/frontend/src/lib/constants.tsx +++ b/frontend/src/lib/constants.tsx @@ -167,6 +167,7 @@ export const FEATURE_FLAGS = { PERSONS_HOGQL_QUERY: 'persons-hogql-query', // owner: @mariusandra NOTEBOOK_CANVASES: 'notebook-canvases', // owner: #team-monitoring SESSION_RECORDING_SAMPLING: 'session-recording-sampling', // owner: #team-monitoring + PERSON_FEED_CANVAS: 'person-feed-canvas', // owner: #project-canvas } as const export type FeatureFlagKey = (typeof FEATURE_FLAGS)[keyof typeof FEATURE_FLAGS] diff --git a/frontend/src/lib/lemon-ui/LemonCalendarRange/LemonCalendarRangeInline.tsx b/frontend/src/lib/lemon-ui/LemonCalendarRange/LemonCalendarRangeInline.tsx index 698d891ac33cf..8a25fd4d1fae1 100644 --- a/frontend/src/lib/lemon-ui/LemonCalendarRange/LemonCalendarRangeInline.tsx +++ b/frontend/src/lib/lemon-ui/LemonCalendarRange/LemonCalendarRangeInline.tsx @@ -33,6 +33,7 @@ export function LemonCalendarRangeInline({ // How many months fit on the screen, capped between 1..2 function getMonthCount(): number { const width = + // eslint-disable-next-line valid-typeof typeof window === undefined ? WIDTH_OF_ONE_CALENDAR_MONTH * CALENDARS_IF_NO_WINDOW : window.innerWidth return Math.min(Math.max(1, Math.floor(width / WIDTH_OF_ONE_CALENDAR_MONTH)), 2) } diff --git a/frontend/src/lib/lemon-ui/LemonMenu/LemonMenu.tsx b/frontend/src/lib/lemon-ui/LemonMenu/LemonMenu.tsx index 44e0a952e9646..c00145d40f449 100644 --- a/frontend/src/lib/lemon-ui/LemonMenu/LemonMenu.tsx +++ b/frontend/src/lib/lemon-ui/LemonMenu/LemonMenu.tsx @@ -98,7 +98,7 @@ export function LemonMenu({ ) const _onVisibilityChange = useCallback( - (visible) => { + (visible: boolean) => { onVisibilityChange?.(visible) if (visible && activeItemIndex && activeItemIndex > -1) { // Scroll the active item into view once the menu is open (i.e. in the next tick) @@ -256,7 +256,7 @@ const LemonMenuItemButton: FunctionComponent - {label} + {label as string | JSX.Element} {keyboardShortcut && (
{/* Show the keyboard shortcut on the right */} diff --git a/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.tsx b/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.tsx index 8b5c6ab2cdf70..5686b6af19412 100644 --- a/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.tsx +++ b/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.tsx @@ -93,7 +93,7 @@ export interface LemonSelectPropsNonClearable extends LemonSelectPropsBase export type LemonSelectProps = LemonSelectPropsClearable | LemonSelectPropsNonClearable -export function LemonSelect({ +export function LemonSelect({ value = null, onChange, onSelect, diff --git a/frontend/src/lib/lemon-ui/LemonTable/TableRow.tsx b/frontend/src/lib/lemon-ui/LemonTable/TableRow.tsx index e67c574711ec9..6071cc7b08183 100644 --- a/frontend/src/lib/lemon-ui/LemonTable/TableRow.tsx +++ b/frontend/src/lib/lemon-ui/LemonTable/TableRow.tsx @@ -132,6 +132,8 @@ function TableRowRaw>({ // of a class indicating that scrollability to `table` caused the component to lag due to unneded rerendering of rows. export const TableRow = React.memo(TableRowRaw) as typeof TableRowRaw -function isTableCellRepresentation(contents: React.ReactNode): contents is TableCellRepresentation { +function isTableCellRepresentation( + contents: React.ReactNode | TableCellRepresentation +): contents is TableCellRepresentation { return !!contents && typeof contents === 'object' && !React.isValidElement(contents) } diff --git a/frontend/src/lib/lemon-ui/hooks.ts b/frontend/src/lib/lemon-ui/hooks.ts index ba4afca720d23..32625c2d499bd 100644 --- a/frontend/src/lib/lemon-ui/hooks.ts +++ b/frontend/src/lib/lemon-ui/hooks.ts @@ -6,7 +6,7 @@ import { useLayoutEffect, useRef, useState } from 'react' * @private */ export function useSliderPositioning( - currentValue: string | number | null | undefined, + currentValue: React.Key | null | undefined, transitionMs: number ): { containerRef: React.RefObject diff --git a/frontend/src/lib/lemon-ui/icons/icons.tsx b/frontend/src/lib/lemon-ui/icons/icons.tsx index 55115bab2944b..8d5048e4aad10 100644 --- a/frontend/src/lib/lemon-ui/icons/icons.tsx +++ b/frontend/src/lib/lemon-ui/icons/icons.tsx @@ -2472,3 +2472,25 @@ export function IconNotebook(props: LemonIconProps): JSX.Element { ) } + +export function IconCode(props: LemonIconProps): JSX.Element { + return ( + + + + ) +} + +export function IconAdsClick(props: LemonIconProps): JSX.Element { + return ( + + + + ) +} diff --git a/frontend/src/scenes/billing/BillingLimitInput.tsx b/frontend/src/scenes/billing/BillingLimitInput.tsx index f644f22dd8f86..6f1dd652a4acb 100644 --- a/frontend/src/scenes/billing/BillingLimitInput.tsx +++ b/frontend/src/scenes/billing/BillingLimitInput.tsx @@ -25,12 +25,14 @@ export const BillingLimitInput = ({ product }: { product: BillingProductV2Type } if (value === undefined) { return actuallyUpdateLimit() } - const productAndAddonTiers: BillingV2TierType[][] = [ - product.tiers, - ...product.addons - ?.filter((addon: BillingProductV2AddonType) => addon.subscribed) - ?.map((addon: BillingProductV2AddonType) => addon.tiers), - ].filter(Boolean) as BillingV2TierType[][] + + const addonTiers = product.addons + ?.filter((addon: BillingProductV2AddonType) => addon.subscribed) + ?.map((addon: BillingProductV2AddonType) => addon.tiers) + + const productAndAddonTiers: BillingV2TierType[][] = [product.tiers, ...addonTiers].filter( + Boolean + ) as BillingV2TierType[][] const newAmountAsUsage = product.tiers ? convertAmountToUsage(`${value}`, productAndAddonTiers, billing?.discount_percent) diff --git a/frontend/src/scenes/billing/billingProductLogic.ts b/frontend/src/scenes/billing/billingProductLogic.ts index 7b26b0562f68f..07641dbb725c6 100644 --- a/frontend/src/scenes/billing/billingProductLogic.ts +++ b/frontend/src/scenes/billing/billingProductLogic.ts @@ -101,12 +101,12 @@ export const billingProductLogic = kea([ (billing, product, isEditingBillingLimit, billingLimitInput, customLimitUsd) => { // cast the product as a product, not an addon, to avoid TS errors. This is fine since we're just getting the tiers. product = product as BillingProductV2Type - const productAndAddonTiers: BillingV2TierType[][] = [ - product.tiers, - ...product.addons - ?.filter((addon: BillingProductV2AddonType) => addon.subscribed) - ?.map((addon: BillingProductV2AddonType) => addon.tiers), - ].filter(Boolean) as BillingV2TierType[][] + const addonTiers = product.addons + ?.filter((addon: BillingProductV2AddonType) => addon.subscribed) + ?.map((addon: BillingProductV2AddonType) => addon.tiers) + const productAndAddonTiers: BillingV2TierType[][] = [product.tiers, ...addonTiers].filter( + Boolean + ) as BillingV2TierType[][] return product.tiers ? isEditingBillingLimit ? convertAmountToUsage(`${billingLimitInput}`, productAndAddonTiers, billing?.discount_percent) diff --git a/frontend/src/scenes/experiments/experimentLogic.tsx b/frontend/src/scenes/experiments/experimentLogic.tsx index 9e9068689e1fc..b75e1c68251a0 100644 --- a/frontend/src/scenes/experiments/experimentLogic.tsx +++ b/frontend/src/scenes/experiments/experimentLogic.tsx @@ -802,7 +802,7 @@ export const experimentLogic = kea([ let index = -1 if (insightType === InsightType.FUNNELS) { // Funnel Insight is displayed in order of decreasing count - index = ([...experimentResults?.insight] as FunnelStep[][]) + index = ([...experimentResults.insight] as FunnelStep[][]) .sort((a, b) => b[0]?.count - a[0]?.count) .findIndex( (variantFunnel: FunnelStep[]) => variantFunnel[0]?.breakdown_value?.[0] === variant diff --git a/frontend/src/scenes/feature-flags/featureFlagLogic.ts b/frontend/src/scenes/feature-flags/featureFlagLogic.ts index 0ea7e1154bbcf..172ca75db8329 100644 --- a/frontend/src/scenes/feature-flags/featureFlagLogic.ts +++ b/frontend/src/scenes/feature-flags/featureFlagLogic.ts @@ -266,7 +266,10 @@ export const featureFlagLogic = kea([ if (!state) { return state } - const groups = [...state?.filters.groups, { properties: [], rollout_percentage: 0, variant: null }] + const groups = [ + ...(state?.filters?.groups || []), + { properties: [], rollout_percentage: 0, variant: null }, + ] return { ...state, filters: { ...state.filters, groups } } }, addRollbackCondition: (state) => { @@ -291,7 +294,7 @@ export const featureFlagLogic = kea([ return state } - const groups = [...state?.filters.groups] + const groups = [...(state?.filters?.groups || [])] if (newRolloutPercentage !== undefined) { groups[index] = { ...groups[index], rollout_percentage: newRolloutPercentage } } diff --git a/frontend/src/scenes/notebooks/Marks/NotebookMarkLink.tsx b/frontend/src/scenes/notebooks/Marks/NotebookMarkLink.tsx index 52a66b633af6d..f50e1290734a2 100644 --- a/frontend/src/scenes/notebooks/Marks/NotebookMarkLink.tsx +++ b/frontend/src/scenes/notebooks/Marks/NotebookMarkLink.tsx @@ -59,5 +59,10 @@ export const NotebookMarkLink = Mark.create({ }) const isPostHogLink = (href: string): boolean => { - return new URL(href, window.location.origin).origin === window.location.origin + try { + const url = new URL(href, window.location.origin) + return url.origin === window.location.origin + } catch { + return false + } } diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodeMap.tsx b/frontend/src/scenes/notebooks/Nodes/NotebookNodeMap.tsx new file mode 100644 index 0000000000000..f0e5ef1931c7d --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodeMap.tsx @@ -0,0 +1,64 @@ +import { Marker } from 'maplibre-gl' + +import { NotebookNodeType } from '~/types' +import { createPostHogWidgetNode } from 'scenes/notebooks/Nodes/NodeWrapper' +import { personLogic } from 'scenes/persons/personLogic' +import { useValues } from 'kea' +import { LemonSkeleton } from '@posthog/lemon-ui' +import { NotFound } from 'lib/components/NotFound' +import { Map } from '../../../lib/components/Map/Map' +import { notebookNodeLogic } from './notebookNodeLogic' +import { NotebookNodeProps } from 'scenes/notebooks/Notebook/utils' +import { NotebookNodeEmptyState } from './components/NotebookNodeEmptyState' + +const Component = ({ attributes }: NotebookNodeProps): JSX.Element | null => { + const { id } = attributes + const { expanded } = useValues(notebookNodeLogic) + + const logic = personLogic({ id }) + const { person, personLoading } = useValues(logic) + + if (personLoading) { + return + } else if (!person) { + return + } + + if (!expanded) { + return null + } + + const longtitude = person?.properties?.['$geoip_longitude'] + const latitude = person?.properties?.['$geoip_latitude'] + const personCoordinates: [number, number] | null = + !isNaN(longtitude) && !isNaN(latitude) ? [longtitude, latitude] : null + + if (!personCoordinates) { + return + } + + return ( + + ) +} + +type NotebookNodeMapAttributes = { + id: string +} + +export const NotebookNodeMap = createPostHogWidgetNode({ + nodeType: NotebookNodeType.Map, + titlePlaceholder: 'Location', + Component, + resizeable: true, + heightEstimate: 150, + expandable: true, + startExpanded: true, + attributes: { + id: {}, + }, +}) diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodePerson.tsx b/frontend/src/scenes/notebooks/Nodes/NotebookNodePerson.tsx index bdc635d3282c5..d54a338c14b5d 100644 --- a/frontend/src/scenes/notebooks/Nodes/NotebookNodePerson.tsx +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodePerson.tsx @@ -158,6 +158,7 @@ export const NotebookNodePerson = createPostHogWidgetNode urls.personByDistinctId(attrs.id), resizeable: true, attributes: { diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/EventIcon.tsx b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/EventIcon.tsx new file mode 100644 index 0000000000000..abab74d367546 --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/EventIcon.tsx @@ -0,0 +1,32 @@ +import { EventType } from '~/types' + +import { Tooltip } from '@posthog/lemon-ui' +import { IconAdsClick, IconExclamation, IconEyeHidden, IconEyeVisible, IconCode } from 'lib/lemon-ui/icons' +import { KEY_MAPPING } from 'lib/taxonomy' + +type EventIconProps = { event: EventType } + +export const EventIcon = ({ event }: EventIconProps): JSX.Element => { + let Component: React.ComponentType<{ className: string }> + switch (event.event) { + case '$pageview': + Component = IconEyeVisible + break + case '$pageleave': + Component = IconEyeHidden + break + case '$autocapture': + Component = IconAdsClick + break + case '$rageclick': + Component = IconExclamation + break + default: + Component = IconCode + } + return ( + + + + ) +} diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/NotebookNodePersonFeed.tsx b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/NotebookNodePersonFeed.tsx new file mode 100644 index 0000000000000..28f71f4493b9a --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/NotebookNodePersonFeed.tsx @@ -0,0 +1,70 @@ +import { useValues } from 'kea' + +import { LemonSkeleton } from '@posthog/lemon-ui' +import { NotFound } from 'lib/components/NotFound' +import { NotebookNodeType, PersonType } from '~/types' +// import { TimelineEntry } from '~/queries/schema' +import { NotebookNodeProps } from 'scenes/notebooks/Notebook/utils' +import { personLogic } from 'scenes/persons/personLogic' +import { createPostHogWidgetNode } from '../NodeWrapper' +import { notebookNodePersonFeedLogic } from './notebookNodePersonFeedLogic' +import { Session } from './Session' + +const FeedSkeleton = (): JSX.Element => ( +
+ +
+) + +type FeedProps = { + person: PersonType +} + +const Feed = ({ person }: FeedProps): JSX.Element => { + const id = person.id ?? 'missing' + const { sessions, sessionsLoading } = useValues(notebookNodePersonFeedLogic({ personId: id })) + + if (!sessions && sessionsLoading) { + return + } else if (sessions === null) { + return + } + + return ( +
+ {sessions.map((session: any) => ( + + ))} +
+ ) +} + +const Component = ({ attributes }: NotebookNodeProps): JSX.Element => { + const { id } = attributes + + const logic = personLogic({ id }) + const { person, personLoading } = useValues(logic) + + if (personLoading) { + return + } else if (!person) { + return + } + + return +} + +type NotebookNodePersonFeedAttributes = { + id: string +} + +export const NotebookNodePersonFeed = createPostHogWidgetNode({ + nodeType: NotebookNodeType.PersonFeed, + titlePlaceholder: 'Feed', + Component, + resizeable: false, + expandable: false, + attributes: { + id: {}, + }, +}) diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/Session.tsx b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/Session.tsx new file mode 100644 index 0000000000000..e181b27b49bd2 --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/Session.tsx @@ -0,0 +1,89 @@ +import { useState } from 'react' +import { useActions, useValues } from 'kea' + +import { LemonButton } from '@posthog/lemon-ui' +import { IconRewindPlay } from '@posthog/icons' +import { dayjs } from 'lib/dayjs' +// import { TimelineEntry } from '~/queries/schema' +import { NotebookNodeType } from '~/types' +import { IconUnfoldLess, IconUnfoldMore } from 'lib/lemon-ui/icons' +import { humanFriendlyDetailedTime, humanFriendlyDuration } from 'lib/utils' +import { SessionEvent } from './SessionEvent' +import { notebookNodeLogic } from '../notebookNodeLogic' + +type SessionProps = { + session: any // TimelineEntry +} + +export const Session = ({ session }: SessionProps): JSX.Element => { + const { children, nodeId } = useValues(notebookNodeLogic) + const { updateAttributes } = useActions(notebookNodeLogic) + + const startTime = dayjs(session.events[0].timestamp) + const endTime = dayjs(session.events[session.events.length - 1].timestamp) + const durationSeconds = endTime.diff(startTime, 'second') + + const [isFolded, setIsFolded] = useState(false) + + const onOpenReplay = (): void => { + const newChildren = [...children] || [] + + const existingChild = newChildren.find((child) => child.attrs?.nodeId === `${nodeId}-active-replay`) + + if (existingChild) { + existingChild.attrs.id = session.sessionId + } else { + newChildren.splice(0, 0, { + type: NotebookNodeType.Recording, + attrs: { + id: session.sessionId, + nodeId: `${nodeId}-active-replay`, + height: '5rem', + __init: { + expanded: true, + }, + }, + }) + } + + updateAttributes({ + children: newChildren, + }) + } + + return ( +
+
+
+ : } + status="stealth" + onClick={() => setIsFolded((state) => !state)} + /> + {humanFriendlyDetailedTime(startTime)} +
+
+ + {session.events.length} events in {humanFriendlyDuration(durationSeconds)} + + {session.recording_duration_s ? ( + } + onClick={() => onOpenReplay()} + /> + ) : null} +
+
+ {!isFolded && ( +
+ {session.events.map((event: any) => ( + + ))} +
+ )} +
+ ) +} diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/SessionEvent.tsx b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/SessionEvent.tsx new file mode 100644 index 0000000000000..00131544c5662 --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/SessionEvent.tsx @@ -0,0 +1,18 @@ +import { EventType } from '~/types' +import { eventToDescription } from 'lib/utils' +import { dayjs } from 'lib/dayjs' +import { EventIcon } from './EventIcon' + +type SessionEventProps = { event: EventType } + +export const SessionEvent = ({ event }: SessionEventProps): JSX.Element => ( +
+
+ + {eventToDescription(event)} +
+
+ {dayjs(event.timestamp).format('h:mm:ss A')} +
+
+) diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/mockSessionsTimelineQueryResponse.json b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/mockSessionsTimelineQueryResponse.json new file mode 100644 index 0000000000000..c88078c9cafa0 --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/mockSessionsTimelineQueryResponse.json @@ -0,0 +1,27214 @@ +{ + "hasMore": false, + "hogql": "SELECT e.uuid, e.timestamp, e.event, e.properties, e.distinct_id, e.elements_chain, e.$session_id AS formal_session_id, first_value(e.uuid) OVER (PARTITION BY $session_id ORDER BY divide(__toInt64(timestamp), 60000000.0) ASC RANGE BETWEEN 1800 PRECEDING AND CURRENT ROW) AS informal_session_uuid, dateDiff('s', sre.start_time, sre.end_time) AS recording_duration_s FROM events AS e LEFT JOIN (SELECT start_time, end_time, session_id FROM session_replay_events) AS sre ON equals(e.$session_id, sre.session_id) WHERE equals(e.person_id, '018a92fd-a1c3-0000-4144-fb39888c298e') ORDER BY timestamp DESC LIMIT 100", + "results": [ + { + "events": [ + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageleave", + "id": "018b4c9d-aef5-789f-81e4-212476c51e92", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/canvas#state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6IkV2ZW50IEV4cGxvcmVyIn1dfSx7InR5cGUiOiJwaC1xdWVyeSIsImF0dHJzIjp7ImhlaWdodCI6bnVsbCwidGl0bGUiOm51bGwsIm5vZGVJZCI6IjZkNDg1MDY2LWVjOTktNDgzZC04Yjk4LTRkOGEyZGM5Y2M0YiIsIl9faW5pdCI6bnVsbCwiY2hpbGRyZW4iOlt7InR5cGUiOiJwaC1wZXJzb24iLCJhdHRycyI6eyJpZCI6InBsckVZOHBBN3NYMW1GdDg3NGFBVUhlNXRXWmkzbExGOWJ1OWVqUXlHUHkifX0seyJ0eXBlIjoicGgtcmVjb3JkaW5nIiwiYXR0cnMiOnsiaWQiOiIwMThiNDc0MC1kY2JlLTdkNzctYjJlMi05MmJjZTIwYTIzZTMifX1dLCJxdWVyeSI6eyJraW5kIjoiRGF0YVRhYmxlTm9kZSIsInNvdXJjZSI6eyJraW5kIjoiRXZlbnRzUXVlcnkiLCJhZnRlciI6Ii0yNGgiLCJsaW1pdCI6MTAwLCJzZWxlY3QiOlsiKiIsImV2ZW50IiwicGVyc29uIiwiY29hbGVzY2UocHJvcGVydGllcy4kY3VycmVudF91cmwsIHByb3BlcnRpZXMuJHNjcmVlbl9uYW1lKSAtLSBVcmwgLyBTY3JlZW4iLCJwcm9wZXJ0aWVzLiRsaWIiLCJ0aW1lc3RhbXAiXSwicHJvcGVydGllcyI6W119fX19XX0%3D", + "$host": "localhost:8000", + "$pathname": "/canvas", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "xumznmndw7ojbqql", + "$time": 1697797484.277, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4c9d-ab5d-778b-9a9c-57db85a58ec0", + "$window_id": "018b4c9d-ab5d-778b-9a9c-57dc585fb9f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/canvas#state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6IkV2ZW50IEV4cGxvcmVyIn1dfSx7InR5cGUiOiJwaC1xdWVyeSIsImF0dHJzIjp7ImhlaWdodCI6bnVsbCwidGl0bGUiOm51bGwsIm5vZGVJZCI6IjZkNDg1MDY2LWVjOTktNDgzZC04Yjk4LTRkOGEyZGM5Y2M0YiIsIl9faW5pdCI6bnVsbCwiY2hpbGRyZW4iOlt7InR5cGUiOiJwaC1wZXJzb24iLCJhdHRycyI6eyJpZCI6InBsckVZOHBBN3NYMW1GdDg3NGFBVUhlNXRXWmkzbExGOWJ1OWVqUXlHUHkifX0seyJ0eXBlIjoicGgtcmVjb3JkaW5nIiwiYXR0cnMiOnsiaWQiOiIwMThiNDc0MC1kY2JlLTdkNzctYjJlMi05MmJjZTIwYTIzZTMifX1dLCJxdWVyeSI6eyJraW5kIjoiRGF0YVRhYmxlTm9kZSIsInNvdXJjZSI6eyJraW5kIjoiRXZlbnRzUXVlcnkiLCJhZnRlciI6Ii0yNGgiLCJsaW1pdCI6MTAwLCJzZWxlY3QiOlsiKiIsImV2ZW50IiwicGVyc29uIiwiY29hbGVzY2UocHJvcGVydGllcy4kY3VycmVudF91cmwsIHByb3BlcnRpZXMuJHNjcmVlbl9uYW1lKSAtLSBVcmwgLyBTY3JlZW4iLCJwcm9wZXJ0aWVzLiRsaWIiLCJ0aW1lc3RhbXAiXSwicHJvcGVydGllcyI6W119fX19XX0%3D", + "$pathname": "/canvas", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/canvas#state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6IkV2ZW50IEV4cGxvcmVyIn1dfSx7InR5cGUiOiJwaC1xdWVyeSIsImF0dHJzIjp7ImhlaWdodCI6bnVsbCwidGl0bGUiOm51bGwsIm5vZGVJZCI6IjZkNDg1MDY2LWVjOTktNDgzZC04Yjk4LTRkOGEyZGM5Y2M0YiIsIl9faW5pdCI6bnVsbCwiY2hpbGRyZW4iOlt7InR5cGUiOiJwaC1wZXJzb24iLCJhdHRycyI6eyJpZCI6InBsckVZOHBBN3NYMW1GdDg3NGFBVUhlNXRXWmkzbExGOWJ1OWVqUXlHUHkifX0seyJ0eXBlIjoicGgtcmVjb3JkaW5nIiwiYXR0cnMiOnsiaWQiOiIwMThiNDc0MC1kY2JlLTdkNzctYjJlMi05MmJjZTIwYTIzZTMifX1dLCJxdWVyeSI6eyJraW5kIjoiRGF0YVRhYmxlTm9kZSIsInNvdXJjZSI6eyJraW5kIjoiRXZlbnRzUXVlcnkiLCJhZnRlciI6Ii0yNGgiLCJsaW1pdCI6MTAwLCJzZWxlY3QiOlsiKiIsImV2ZW50IiwicGVyc29uIiwiY29hbGVzY2UocHJvcGVydGllcy4kY3VycmVudF91cmwsIHByb3BlcnRpZXMuJHNjcmVlbl9uYW1lKSAtLSBVcmwgLyBTY3JlZW4iLCJwcm9wZXJ0aWVzLiRsaWIiLCJ0aW1lc3RhbXAiXSwicHJvcGVydGllcyI6W119fX19XX0%3D", + "$initial_pathname": "/canvas", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:24:44.284000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:24:44.281000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$opt_in", + "id": "018b4ca0-9676-7421-9397-8506bb94ebac", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "vodqry65n7z97q71", + "$time": 1697797674.614, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4c9d-ab5d-778b-9a9c-57db85a58ec0", + "$window_id": "018b4ca0-9674-7a84-9e68-ee5996f32986", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:54.616000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.625000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca0-9678-732b-a9e0-bfbbd9dbc2ce", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "tkovmn0505g1e31n", + "$time": 1697797674.616, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "title": "PostHog", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4c9d-ab5d-778b-9a9c-57db85a58ec0", + "$window_id": "018b4ca0-9674-7a84-9e68-ee5996f32986", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:54.617000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.631000+00:00", + "uuid": null + } + ], + "recording_duration_s": null, + "sessionId": "018b4c9d-ab5d-778b-9a9c-57db85a58ec0" + }, + { + "events": [ + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$set", + "id": "018b4ca0-9686-7b75-ba2e-61e8667c6a38", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "rffzbtlav260619e", + "$time": 1697797674.63, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$set": { + "email": "test@posthog.com", + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.639000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4ca0-9687-7734-890a-7891724ddd1e", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "8cp3ng6n4b6np5ys", + "$time": 1697797674.631, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "project", + "$group_key": "018a92f8-b602-0000-75de-4b9073693531", + "$group_set": { + "id": 1, + "uuid": "018a92f8-b602-0000-75de-4b9073693531", + "name": "Hedgebox", + "ingested_event": true, + "is_demo": false, + "timezone": "UTC", + "instance_tag": "none" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.640000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4ca0-9688-735f-882b-8dfa30ad146b", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "l4ypd28525qtjw68", + "$time": 1697797674.632, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "organization", + "$group_key": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_set": { + "id": "018a92f8-afff-0000-efec-ca77de39e384", + "name": "Hedgebox Inc.", + "slug": "hedgebox-inc", + "created_at": "2023-09-14T09:14:46.145060Z", + "available_features": [ + "zapier", + "slack_integration", + "microsoft_teams_integration", + "discord_integration", + "apps", + "app_metrics", + "boolean_flags", + "multivariate_flags", + "persist_flags_cross_authentication", + "feature_flag_payloads", + "multiple_release_conditions", + "release_condition_overrides", + "targeting_by_group", + "local_evaluation_and_bootstrapping", + "flag_usage_stats", + "experimentation", + "group_experiments", + "funnel_experiments", + "secondary_metrics", + "statistical_analysis", + "console_logs", + "recordings_playlists", + "recordings_performance", + "recordings_file_export", + "group_analytics", + "dashboards", + "funnels", + "graphs_trends", + "paths", + "subscriptions", + "paths_advanced", + "dashboard_permissioning", + "dashboard_collaboration", + "ingestion_taxonomy", + "correlation_analysis", + "tagging", + "behavioral_cohort_filtering", + "tracked_users", + "data_retention", + "team_members", + "organizations_projects", + "api_access", + "project_based_permissioning", + "social_sso", + "sso_enforcement", + "white_labelling", + "community_support", + "dedicated_support", + "email_support", + "terms_and_conditions", + "security_assessment" + ], + "instance_tag": "none" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.641000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-96d9-72c4-940e-87b71e722e23", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "xnqcrio4jvhwlgow", + "$time": 1697797674.714, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "posthog-3000", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.723000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-96da-7ee1-870d-308e41519ca3", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "9hatx583uf4rb4c8", + "$time": 1697797674.714, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "enable-prompts", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.724000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-96e3-7222-bd72-66e3936e12d4", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "qzz7i4g28jxppet9", + "$time": 1697797674.725, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "notebooks", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.734000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca0-976b-793a-9471-146bc8d275fa", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "zd3q70dq6xabtyjy", + "$time": 1697797674.859, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "title": "Homepage \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.868000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4ca0-976e-70e4-9638-9cc06f5ff7ae", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "tr5rt49cwyup64d1", + "$time": 1697797674.863, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "instance", + "$group_key": "http://localhost:8000", + "$group_set": { + "site_url": "http://localhost:8000" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:54.872000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "dashboard loading time", + "id": "018b4ca0-9a3d-701d-ae6b-2dd63b414e53", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "bky5j00lf96hy1er", + "$time": 1697797675.581, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 732, + "dashboardId": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:55.590000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "viewed dashboard", + "id": "018b4ca0-9d0b-7f91-95e6-1e4ca5ee515d", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "r9bc60imc531ktci", + "$time": 1697797676.299, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "created_at": "2023-09-14T09:15:00.211731Z", + "is_shared": false, + "pinned": true, + "creation_mode": "default", + "sample_items_count": 0, + "item_count": 7, + "created_by_system": true, + "dashboard_id": 1, + "lastRefreshed": "2023-10-20T10:20:11.963Z", + "refreshAge": 464, + "lifecycle_count": 2, + "trends_count": 3, + "funnels_count": 1, + "retention_count": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:56.308000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["Link", "SidebarListItem__link"], + "attr_id": null, + "attributes": { + "attr__class": "Link SidebarListItem__link", + "attr__draggable": "true", + "attr__href": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI" + }, + "href": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "a", + "text": null + }, + { + "attr_class": ["SidebarListItem"], + "attr_id": "sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3", + "attributes": { + "attr__aria-disabled": "false", + "attr__aria-invalid": "false", + "attr__class": "SidebarListItem", + "attr__id": "sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3", + "attr__style": "height: 32px; left: 0px; position: absolute; top: 64px; width: 100%;", + "attr__title": "test@posthog.com" + }, + "href": null, + "nth_child": 3.0, + "nth_of_type": 3.0, + "order": 1.0, + "tag_name": "li", + "text": null + }, + { + "attr_class": ["ReactVirtualized__Grid__innerScrollContainer"], + "attr_id": null, + "attributes": { + "attr__class": "ReactVirtualized__Grid__innerScrollContainer", + "attr__role": "rowgroup", + "attr__style": "width: auto; height: 95872px; max-width: 250px; max-height: 95872px; overflow: hidden; position: relative;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ReactVirtualized__Grid", "ReactVirtualized__List", "SidebarList"], + "attr_id": null, + "attributes": { + "attr__aria-label": "grid", + "attr__aria-readonly": "true", + "attr__class": "ReactVirtualized__Grid ReactVirtualized__List SidebarList", + "attr__role": "grid", + "attr__style": "box-sizing: border-box; direction: ltr; height: 312px; position: relative; width: 250px; will-change: transform; overflow: hidden auto;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__style": "overflow: visible; height: 0px;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex-1"], + "attr_id": null, + "attributes": { + "attr__class": "flex-1", + "attr__style": "position: relative;" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Accordion"], + "attr_id": null, + "attributes": { + "attr__aria-busy": "false", + "attr__aria-disabled": "false", + "attr__aria-expanded": "true", + "attr__class": "Accordion" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "section", + "text": null + }, + { + "attr_class": ["Sidebar3000__lists"], + "attr_id": null, + "attributes": { + "attr__class": "Sidebar3000__lists" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Sidebar3000__content"], + "attr_id": null, + "attributes": { + "attr__class": "Sidebar3000__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Sidebar3000"], + "attr_id": null, + "attributes": { + "attr__aria-hidden": "false", + "attr__class": "Sidebar3000", + "attr__style": "--sidebar-width: 250px;" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 12.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "a.Link.SidebarListItem__link:attr__class=\"Link SidebarListItem__link\"attr__draggable=\"true\"attr__href=\"/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI\"href=\"/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI\"nth-child=\"1\"nth-of-type=\"1\";li.SidebarListItem:attr__aria-disabled=\"false\"attr__aria-invalid=\"false\"attr__class=\"SidebarListItem\"attr__id=\"sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3\"attr__style=\"height: 32px; left: 0px; position: absolute; top: 64px; width: 100%;\"attr__title=\"test@posthog.com\"attr_id=\"sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3\"nth-child=\"3\"nth-of-type=\"3\";div.ReactVirtualized__Grid__innerScrollContainer:attr__class=\"ReactVirtualized__Grid__innerScrollContainer\"attr__role=\"rowgroup\"attr__style=\"width: auto; height: 95872px; max-width: 250px; max-height: 95872px; overflow: hidden; position: relative;\"nth-child=\"1\"nth-of-type=\"1\";div.ReactVirtualized__Grid.ReactVirtualized__List.SidebarList:attr__aria-label=\"grid\"attr__aria-readonly=\"true\"attr__class=\"ReactVirtualized__Grid ReactVirtualized__List SidebarList\"attr__role=\"grid\"attr__style=\"box-sizing: border-box; direction: ltr; height: 312px; position: relative; width: 250px; will-change: transform; overflow: hidden auto;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__style=\"overflow: visible; height: 0px;\"nth-child=\"1\"nth-of-type=\"1\";div.flex-1:attr__class=\"flex-1\"attr__style=\"position: relative;\"nth-child=\"2\"nth-of-type=\"2\";section.Accordion:attr__aria-busy=\"false\"attr__aria-disabled=\"false\"attr__aria-expanded=\"true\"attr__class=\"Accordion\"nth-child=\"1\"nth-of-type=\"1\";div.Sidebar3000__lists:attr__class=\"Sidebar3000__lists\"nth-child=\"2\"nth-of-type=\"2\";div.Sidebar3000__content:attr__class=\"Sidebar3000__content\"nth-child=\"1\"nth-of-type=\"1\";div.Sidebar3000:attr__aria-hidden=\"false\"attr__class=\"Sidebar3000\"attr__style=\"--sidebar-width: 250px;\"nth-child=\"2\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4ca0-a013-7c3d-9cbd-825b3733cec2", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "b99wxvg3x3924y92", + "$time": 1697797677.075, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:57.084000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-a01c-769b-aa86-7a1610aba22a", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "pd0e9vs1h9dseim5", + "$time": 1697797677.084, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "product-specific-onboarding", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:57.094000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-a082-7b23-a908-b488abaaa928", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "81zsk054pmqq1xc0", + "$time": 1697797677.187, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "cs-dashboards", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:57.196000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca0-a11d-73af-85b8-ed8d0af6f60c", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "h057ocr0sxdig2et", + "$time": 1697797677.342, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "title": "Persons \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:27:57.623000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:57.351000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__href": "/person/bbf314c9-0877-450e-793a-f33cf151dd96" + }, + "href": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "h5", + "text": "bbf314c9-0877-450e-793a-f33cf151dd96" + }, + { + "attr_class": ["Link", "SidebarListItem__link"], + "attr_id": null, + "attributes": { + "attr__class": "Link SidebarListItem__link", + "attr__draggable": "true", + "attr__href": "/person/bbf314c9-0877-450e-793a-f33cf151dd96" + }, + "href": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "a", + "text": null + }, + { + "attr_class": ["SidebarListItem"], + "attr_id": "sidebar-bbf314c9-0877-450e-793a-f33cf151dd96", + "attributes": { + "attr__aria-disabled": "false", + "attr__aria-invalid": "false", + "attr__class": "SidebarListItem", + "attr__id": "sidebar-bbf314c9-0877-450e-793a-f33cf151dd96", + "attr__style": "height: 32px; left: 0px; position: absolute; top: 96px; width: 100%;", + "attr__title": "bbf314c9-0877-450e-793a-f33cf151dd96" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 4.0, + "order": 2.0, + "tag_name": "li", + "text": null + }, + { + "attr_class": ["ReactVirtualized__Grid__innerScrollContainer"], + "attr_id": null, + "attributes": { + "attr__class": "ReactVirtualized__Grid__innerScrollContainer", + "attr__role": "rowgroup", + "attr__style": "width: auto; height: 95872px; max-width: 250px; max-height: 95872px; overflow: hidden; position: relative;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ReactVirtualized__Grid", "ReactVirtualized__List", "SidebarList"], + "attr_id": null, + "attributes": { + "attr__aria-label": "grid", + "attr__aria-readonly": "true", + "attr__class": "ReactVirtualized__Grid ReactVirtualized__List SidebarList", + "attr__role": "grid", + "attr__style": "box-sizing: border-box; direction: ltr; height: 312px; position: relative; width: 250px; will-change: transform; overflow: hidden auto;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__style": "overflow: visible; height: 0px;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex-1"], + "attr_id": null, + "attributes": { + "attr__class": "flex-1", + "attr__style": "position: relative;" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Accordion"], + "attr_id": null, + "attributes": { + "attr__aria-busy": "false", + "attr__aria-disabled": "false", + "attr__aria-expanded": "true", + "attr__class": "Accordion" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "section", + "text": null + }, + { + "attr_class": ["Sidebar3000__lists"], + "attr_id": null, + "attributes": { + "attr__class": "Sidebar3000__lists" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Sidebar3000__content"], + "attr_id": null, + "attributes": { + "attr__class": "Sidebar3000__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Sidebar3000"], + "attr_id": null, + "attributes": { + "attr__aria-hidden": "false", + "attr__class": "Sidebar3000", + "attr__style": "--sidebar-width: 250px;" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 12.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 13.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "h5:attr__href=\"/person/bbf314c9-0877-450e-793a-f33cf151dd96\"href=\"/person/bbf314c9-0877-450e-793a-f33cf151dd96\"nth-child=\"1\"nth-of-type=\"1\"text=\"bbf314c9-0877-450e-793a-f33cf151dd96\";a.Link.SidebarListItem__link:attr__class=\"Link SidebarListItem__link\"attr__draggable=\"true\"attr__href=\"/person/bbf314c9-0877-450e-793a-f33cf151dd96\"href=\"/person/bbf314c9-0877-450e-793a-f33cf151dd96\"nth-child=\"1\"nth-of-type=\"1\";li.SidebarListItem:attr__aria-disabled=\"false\"attr__aria-invalid=\"false\"attr__class=\"SidebarListItem\"attr__id=\"sidebar-bbf314c9-0877-450e-793a-f33cf151dd96\"attr__style=\"height: 32px; left: 0px; position: absolute; top: 96px; width: 100%;\"attr__title=\"bbf314c9-0877-450e-793a-f33cf151dd96\"attr_id=\"sidebar-bbf314c9-0877-450e-793a-f33cf151dd96\"nth-child=\"4\"nth-of-type=\"4\";div.ReactVirtualized__Grid__innerScrollContainer:attr__class=\"ReactVirtualized__Grid__innerScrollContainer\"attr__role=\"rowgroup\"attr__style=\"width: auto; height: 95872px; max-width: 250px; max-height: 95872px; overflow: hidden; position: relative;\"nth-child=\"1\"nth-of-type=\"1\";div.ReactVirtualized__Grid.ReactVirtualized__List.SidebarList:attr__aria-label=\"grid\"attr__aria-readonly=\"true\"attr__class=\"ReactVirtualized__Grid ReactVirtualized__List SidebarList\"attr__role=\"grid\"attr__style=\"box-sizing: border-box; direction: ltr; height: 312px; position: relative; width: 250px; will-change: transform; overflow: hidden auto;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__style=\"overflow: visible; height: 0px;\"nth-child=\"1\"nth-of-type=\"1\";div.flex-1:attr__class=\"flex-1\"attr__style=\"position: relative;\"nth-child=\"2\"nth-of-type=\"2\";section.Accordion:attr__aria-busy=\"false\"attr__aria-disabled=\"false\"attr__aria-expanded=\"true\"attr__class=\"Accordion\"nth-child=\"1\"nth-of-type=\"1\";div.Sidebar3000__lists:attr__class=\"Sidebar3000__lists\"nth-child=\"2\"nth-of-type=\"2\";div.Sidebar3000__content:attr__class=\"Sidebar3000__content\"nth-child=\"1\"nth-of-type=\"1\";div.Sidebar3000:attr__aria-hidden=\"false\"attr__class=\"Sidebar3000\"attr__style=\"--sidebar-width: 250px;\"nth-child=\"2\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4ca0-a7ad-7c7c-95c6-394a4fe1e057", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "78a5df8y7e77s5ak", + "$time": 1697797679.022, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "bbf314c9-0877-450e-793a-f33cf151dd96", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.029000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca0-a7b3-73e0-9616-9a41d3b9f6ec", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$host": "localhost:8000", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "xzd3u2auqqufn8xp", + "$time": 1697797679.027, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "title": "Persons \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.034000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-a7b5-7ab1-914c-910f91ea3d80", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$host": "localhost:8000", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "gztdmqq16s7ax9lr", + "$time": 1697797679.029, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "persons-hogql-query", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.036000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-a7b6-7f8c-87d8-47ec71ea6588", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$host": "localhost:8000", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "dzmx9uoovohdmidn", + "$time": 1697797679.03, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "hogql-insights", + "$feature_flag_response": false, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.037000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "query completed", + "id": "018b4ca0-a897-7497-bd78-4c922df74162", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$host": "localhost:8000", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "1ox32j426hf22rbq", + "$time": 1697797679.255, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "query": { + "kind": "HogQLQuery", + "query": "select id, groupArray(pdi.distinct_id) as distinct_ids, properties, is_identified, created_at from persons where pdi.distinct_id={distinct_id} group by id, properties, is_identified, created_at", + "values": { + "distinct_id": "bbf314c9-0877-450e-793a-f33cf151dd96" + } + }, + "duration": 225.0999999642372, + "clickhouse_sql": "SELECT persons.id, groupArray(persons__pdi.distinct_id) AS distinct_ids, persons.properties, persons.is_identified, toTimeZone(persons.created_at, %(hogql_val_0)s) FROM (SELECT person.id, person.properties AS properties, person.is_identified AS is_identified, person.created_at AS created_at FROM person WHERE and(equals(person.team_id, 1), ifNull(in(tuple(person.id, person.version), (SELECT person.id, max(person.version) AS version FROM person WHERE equals(person.team_id, 1) GROUP BY person.id HAVING ifNull(equals(argMax(person.is_deleted, person.version), 0), 0))), 0)) SETTINGS optimize_aggregation_in_order=1) AS persons INNER JOIN (SELECT argMax(person_distinct_id2.person_id, person_distinct_id2.version) AS person_id, person_distinct_id2.distinct_id AS distinct_id FROM person_distinct_id2 WHERE equals(person_distinct_id2.team_id, 1) GROUP BY person_distinct_id2.distinct_id HAVING ifNull(equals(argMax(person_distinct_id2.is_deleted, person_distinct_id2.version), 0), 0)) AS persons__pdi ON equals(persons.id, persons__pdi.person_id) WHERE ifNull(equals(persons__pdi.distinct_id, %(hogql_val_1)s), 0) GROUP BY persons.id, persons.properties, persons.is_identified, toTimeZone(persons.created_at, %(hogql_val_2)s) LIMIT 100 SETTINGS readonly=2, max_execution_time=60, allow_experimental_object_type=1", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.262000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__href": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI" + }, + "href": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "h5", + "text": "test@posthog.com" + }, + { + "attr_class": ["Link", "SidebarListItem__link"], + "attr_id": null, + "attributes": { + "attr__class": "Link SidebarListItem__link", + "attr__draggable": "true", + "attr__href": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI" + }, + "href": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "a", + "text": null + }, + { + "attr_class": ["SidebarListItem"], + "attr_id": "sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3", + "attributes": { + "attr__aria-disabled": "false", + "attr__aria-invalid": "false", + "attr__class": "SidebarListItem", + "attr__id": "sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3", + "attr__style": "height: 32px; left: 0px; position: absolute; top: 64px; width: 100%;", + "attr__title": "test@posthog.com" + }, + "href": null, + "nth_child": 3.0, + "nth_of_type": 3.0, + "order": 2.0, + "tag_name": "li", + "text": null + }, + { + "attr_class": ["ReactVirtualized__Grid__innerScrollContainer"], + "attr_id": null, + "attributes": { + "attr__class": "ReactVirtualized__Grid__innerScrollContainer", + "attr__role": "rowgroup", + "attr__style": "width: auto; height: 95872px; max-width: 250px; max-height: 95872px; overflow: hidden; position: relative;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ReactVirtualized__Grid", "ReactVirtualized__List", "SidebarList"], + "attr_id": null, + "attributes": { + "attr__aria-label": "grid", + "attr__aria-readonly": "true", + "attr__class": "ReactVirtualized__Grid ReactVirtualized__List SidebarList", + "attr__role": "grid", + "attr__style": "box-sizing: border-box; direction: ltr; height: 312px; position: relative; width: 250px; will-change: transform; overflow: hidden auto;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__style": "overflow: visible; height: 0px;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex-1"], + "attr_id": null, + "attributes": { + "attr__class": "flex-1", + "attr__style": "position: relative;" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Accordion"], + "attr_id": null, + "attributes": { + "attr__aria-busy": "false", + "attr__aria-disabled": "false", + "attr__aria-expanded": "true", + "attr__class": "Accordion" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "section", + "text": null + }, + { + "attr_class": ["Sidebar3000__lists"], + "attr_id": null, + "attributes": { + "attr__class": "Sidebar3000__lists" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Sidebar3000__content"], + "attr_id": null, + "attributes": { + "attr__class": "Sidebar3000__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Sidebar3000"], + "attr_id": null, + "attributes": { + "attr__aria-hidden": "false", + "attr__class": "Sidebar3000", + "attr__style": "--sidebar-width: 250px;" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 12.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 13.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "h5:attr__href=\"/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI\"href=\"/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI\"nth-child=\"1\"nth-of-type=\"1\"text=\"test@posthog.com\";a.Link.SidebarListItem__link:attr__class=\"Link SidebarListItem__link\"attr__draggable=\"true\"attr__href=\"/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI\"href=\"/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI\"nth-child=\"1\"nth-of-type=\"1\";li.SidebarListItem:attr__aria-disabled=\"false\"attr__aria-invalid=\"false\"attr__class=\"SidebarListItem\"attr__id=\"sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3\"attr__style=\"height: 32px; left: 0px; position: absolute; top: 64px; width: 100%;\"attr__title=\"test@posthog.com\"attr_id=\"sidebar-krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI,018a92fd-7b25-7770-a050-577e94fd148c,018b4715-2fd1-7b9d-b1de-4cf7972a15e3\"nth-child=\"3\"nth-of-type=\"3\";div.ReactVirtualized__Grid__innerScrollContainer:attr__class=\"ReactVirtualized__Grid__innerScrollContainer\"attr__role=\"rowgroup\"attr__style=\"width: auto; height: 95872px; max-width: 250px; max-height: 95872px; overflow: hidden; position: relative;\"nth-child=\"1\"nth-of-type=\"1\";div.ReactVirtualized__Grid.ReactVirtualized__List.SidebarList:attr__aria-label=\"grid\"attr__aria-readonly=\"true\"attr__class=\"ReactVirtualized__Grid ReactVirtualized__List SidebarList\"attr__role=\"grid\"attr__style=\"box-sizing: border-box; direction: ltr; height: 312px; position: relative; width: 250px; will-change: transform; overflow: hidden auto;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__style=\"overflow: visible; height: 0px;\"nth-child=\"1\"nth-of-type=\"1\";div.flex-1:attr__class=\"flex-1\"attr__style=\"position: relative;\"nth-child=\"2\"nth-of-type=\"2\";section.Accordion:attr__aria-busy=\"false\"attr__aria-disabled=\"false\"attr__aria-expanded=\"true\"attr__class=\"Accordion\"nth-child=\"1\"nth-of-type=\"1\";div.Sidebar3000__lists:attr__class=\"Sidebar3000__lists\"nth-child=\"2\"nth-of-type=\"2\";div.Sidebar3000__content:attr__class=\"Sidebar3000__content\"nth-child=\"1\"nth-of-type=\"1\";div.Sidebar3000:attr__aria-hidden=\"false\"attr__class=\"Sidebar3000\"attr__style=\"--sidebar-width: 250px;\"nth-child=\"2\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4ca0-a98c-7384-b2e2-769ad052ee0b", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$host": "localhost:8000", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "je02qyvh3bhr5mgo", + "$time": 1697797679.501, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "test@posthog.com", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_pathname": "/person/bbf314c9-0877-450e-793a-f33cf151dd96", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.508000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca0-a98f-7b7f-97f9-94db73ef7b5d", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "rv3lg9ojjqh0bazz", + "$time": 1697797679.504, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "title": "bbf314c9-0877-450e-793a-f33cf151dd96 \u2022 Persons \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.511000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "query completed", + "id": "018b4ca0-aa6e-72a0-b88c-a09bd8399999", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "2zh0feb6n1tf9a1f", + "$time": 1697797679.727, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "query": { + "kind": "HogQLQuery", + "query": "select id, groupArray(pdi.distinct_id) as distinct_ids, properties, is_identified, created_at from persons where pdi.distinct_id={distinct_id} group by id, properties, is_identified, created_at", + "values": { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI" + } + }, + "duration": 221.60000002384186, + "clickhouse_sql": "SELECT persons.id, groupArray(persons__pdi.distinct_id) AS distinct_ids, persons.properties, persons.is_identified, toTimeZone(persons.created_at, %(hogql_val_0)s) FROM (SELECT person.id, person.properties AS properties, person.is_identified AS is_identified, person.created_at AS created_at FROM person WHERE and(equals(person.team_id, 1), ifNull(in(tuple(person.id, person.version), (SELECT person.id, max(person.version) AS version FROM person WHERE equals(person.team_id, 1) GROUP BY person.id HAVING ifNull(equals(argMax(person.is_deleted, person.version), 0), 0))), 0)) SETTINGS optimize_aggregation_in_order=1) AS persons INNER JOIN (SELECT argMax(person_distinct_id2.person_id, person_distinct_id2.version) AS person_id, person_distinct_id2.distinct_id AS distinct_id FROM person_distinct_id2 WHERE equals(person_distinct_id2.team_id, 1) GROUP BY person_distinct_id2.distinct_id HAVING ifNull(equals(argMax(person_distinct_id2.is_deleted, person_distinct_id2.version), 0), 0)) AS persons__pdi ON equals(persons.id, persons__pdi.person_id) WHERE ifNull(equals(persons__pdi.distinct_id, %(hogql_val_1)s), 0) GROUP BY persons.id, persons.properties, persons.is_identified, toTimeZone(persons.created_at, %(hogql_val_2)s) LIMIT 100 SETTINGS readonly=2, max_execution_time=60, allow_experimental_object_type=1", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:27:59.734000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "person viewed", + "id": "018b4ca0-ac64-7425-ad3b-067188569418", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "tsn5j4iw9zo6hbti", + "$time": 1697797680.229, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "properties_count": 40, + "has_email": true, + "has_name": false, + "custom_properties_count": 15, + "posthog_properties_count": 25, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:28:00.236000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["LemonTabs__tab-content"], + "attr_id": null, + "attributes": { + "attr__class": "LemonTabs__tab-content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["LemonTabs__tab"], + "attr_id": null, + "attributes": { + "attr__aria-selected": "false", + "attr__class": "LemonTabs__tab", + "attr__role": "tab", + "attr__tabindex": "0" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "li", + "text": null + }, + { + "attr_class": ["LemonTabs__bar"], + "attr_id": null, + "attributes": { + "attr__class": "LemonTabs__bar", + "attr__role": "tablist" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "ul", + "text": null + }, + { + "attr_class": ["LemonTabs"], + "attr_id": null, + "attributes": { + "attr__class": "LemonTabs", + "attr__data-attr": "persons-tabs", + "attr__style": "--lemon-tabs-slider-width: 66.671875px; --lemon-tabs-slider-offset: 64.0078125px;" + }, + "href": null, + "nth_child": 3.0, + "nth_of_type": 3.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000__scene"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000__scene" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "main", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 8.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "div.LemonTabs__tab-content:attr__class=\"LemonTabs__tab-content\"nth-child=\"1\"nth-of-type=\"1\";li.LemonTabs__tab:attr__aria-selected=\"false\"attr__class=\"LemonTabs__tab\"attr__role=\"tab\"attr__tabindex=\"0\"nth-child=\"1\"nth-of-type=\"1\";ul.LemonTabs__bar:attr__class=\"LemonTabs__bar\"attr__role=\"tablist\"nth-child=\"1\"nth-of-type=\"1\";div.LemonTabs:attr__class=\"LemonTabs\"attr__data-attr=\"persons-tabs\"attr__style=\"--lemon-tabs-slider-width: 66.671875px; --lemon-tabs-slider-offset: 64.0078125px;\"nth-child=\"3\"nth-of-type=\"3\";div.Navigation3000__scene:attr__class=\"Navigation3000__scene\"nth-child=\"2\"nth-of-type=\"2\";main:nth-child=\"4\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4ca0-ae21-7de1-bb5d-02e960372d72", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "4ibu5gfwqj4wlqr7", + "$time": 1697797680.673, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:28:00.680000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca0-ae26-7bf7-b0bb-65948958a2b2", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "gt90ymm7l7vaiptd", + "$time": 1697797680.679, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "title": "test@posthog.com \u2022 Persons \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:28:00.686000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca0-ae35-7379-9b8c-431bd55514a9", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ogr8hhsl0diyzzrf", + "$time": 1697797680.694, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "debug-react-renders", + "$feature_flag_response": false, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:00.793000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:28:00.701000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "query completed", + "id": "018b4ca0-b109-79b8-98c9-2d69c5db0935", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "0flk4pc1i44w8cgq", + "$time": 1697797681.417, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "query": { + "kind": "SessionsTimelineQuery", + "after": "2021-01-01T18:00:00Z", + "before": "2024-01-01T06:00:00Z", + "personId": "018a92fd-a1c3-0000-4144-fb39888c298e" + }, + "duration": 476.5999999642372, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:03.798000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:28:01.427000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "notebook content changed", + "id": "018b4ca0-b25b-74ef-9d18-248c54b956bf", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "qoao0ux8ldt09rzp", + "$time": 1697797681.755, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:03.798000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:28:01.765000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca0-b25b-74ef-9d18-248b29df99ce", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "bgnhtkaiu91n6vuo", + "$time": 1697797681.755, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "title": "test@posthog.com \u2022 Persons \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:28:03.798000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:28:01.765000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageleave", + "id": "018b4ca3-104f-7f7f-b9f6-2e4411315c0f", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "5emypqvdlqmzblda", + "$time": 1697797836.88, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:36.883000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:36.886000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$opt_in", + "id": "018b4ca3-1cf4-7218-9d6f-0303911c1193", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "dqkiz2bg4xd3ga0h", + "$time": 1697797840.118, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:40.118000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.133000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca3-1cf7-7208-b179-72da3175820e", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "pyv7tc2zaju04w06", + "$time": 1697797840.12, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "title": "PostHog", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca0-9686-7b75-ba2e-61e9c0054b65", + "$window_id": "018b4ca0-9686-7b75-ba2e-61ea857e58f0", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:40.121000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.138000+00:00", + "uuid": null + } + ], + "recording_duration_s": 72.0, + "sessionId": "018b4ca0-9686-7b75-ba2e-61e9c0054b65" + }, + { + "events": [ + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "dashboard updated", + "id": "018b4cc2-bd56-0000-ed0f-dbd6f467ac8c", + "person": null, + "properties": { + "pinned": true, + "item_count": 7, + "is_shared": false, + "created_at": "2023-09-14T09:15:00.211731+00:00", + "has_description": true, + "tags_count": 0, + "$groups": { + "instance": "http://localhost:8000", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "project": "018a92f8-b602-0000-75de-4b9073693531" + }, + "$lib": "posthog-python", + "$lib_version": "3.0.1", + "$geoip_disable": true, + "$ip": "127.0.0.1", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_1": "http://localhost:8000", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_3": "018a92f8-b602-0000-75de-4b9073693531" + }, + "timestamp": "2023-10-20T11:05:12.306000+00:00", + "uuid": null + } + ], + "recording_duration_s": null, + "sessionId": "" + }, + { + "events": [ + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$set", + "id": "018b4cc2-908b-7989-a77a-ae123bc7cbc4", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ha0xgsu9f9blyc2m", + "$time": 1697799901.323, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$set": { + "email": "test@posthog.com", + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.338000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4cc2-908c-7f15-8890-d2f9975a511c", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ud4b8d49iiqqfdil", + "$time": 1697799901.325, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "project", + "$group_key": "018a92f8-b602-0000-75de-4b9073693531", + "$group_set": { + "id": 1, + "uuid": "018a92f8-b602-0000-75de-4b9073693531", + "name": "Hedgebox", + "ingested_event": true, + "is_demo": false, + "timezone": "UTC", + "instance_tag": "none" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.339000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4cc2-908d-7164-bff2-c69b5d464e46", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "czd0chnpamqs1a4c", + "$time": 1697799901.325, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "organization", + "$group_key": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_set": { + "id": "018a92f8-afff-0000-efec-ca77de39e384", + "name": "Hedgebox Inc.", + "slug": "hedgebox-inc", + "created_at": "2023-09-14T09:14:46.145060Z", + "available_features": [ + "zapier", + "slack_integration", + "microsoft_teams_integration", + "discord_integration", + "apps", + "app_metrics", + "boolean_flags", + "multivariate_flags", + "persist_flags_cross_authentication", + "feature_flag_payloads", + "multiple_release_conditions", + "release_condition_overrides", + "targeting_by_group", + "local_evaluation_and_bootstrapping", + "flag_usage_stats", + "experimentation", + "group_experiments", + "funnel_experiments", + "secondary_metrics", + "statistical_analysis", + "console_logs", + "recordings_playlists", + "recordings_performance", + "recordings_file_export", + "group_analytics", + "dashboards", + "funnels", + "graphs_trends", + "paths", + "subscriptions", + "paths_advanced", + "dashboard_permissioning", + "dashboard_collaboration", + "ingestion_taxonomy", + "correlation_analysis", + "tagging", + "behavioral_cohort_filtering", + "tracked_users", + "data_retention", + "team_members", + "organizations_projects", + "api_access", + "project_based_permissioning", + "social_sso", + "sso_enforcement", + "white_labelling", + "community_support", + "dedicated_support", + "email_support", + "terms_and_conditions", + "security_assessment" + ], + "instance_tag": "none" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.340000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4cc2-90b0-7498-a7ad-d3ff880511c3", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "rwp5rcbgzns63s79", + "$time": 1697799901.36, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "posthog-3000", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.375000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4cc2-90b1-7bfb-9f2a-3a35e51991fe", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "rjjli19zqga47ayx", + "$time": 1697799901.361, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "enable-prompts", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.375000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4cc2-90bd-745c-b4b0-f90272791844", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "vx58g66m43l6t6f3", + "$time": 1697799901.373, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "notebooks", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.387000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4cc2-9140-73ac-b975-4e50e33b3fba", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "x03pwwegn9jrn34n", + "$time": 1697799901.504, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "instance", + "$group_key": "http://localhost:8000", + "$group_set": { + "site_url": "http://localhost:8000" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.519000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4cc2-91af-7940-abb9-c07bae63b31e", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "5r7bw5fp42mlnj6q", + "$time": 1697799901.615, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "title": "Homepage \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.629000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "dashboard loading time", + "id": "018b4cc2-93a1-7246-a6bf-a897501c968c", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "6bivi84ckma4m1y9", + "$time": 1697799902.113, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 507, + "dashboardId": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:02.127000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "viewed dashboard", + "id": "018b4cc2-9669-7d7e-8b47-0c46f32bdc04", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "m30j6hcfsn1nttq0", + "$time": 1697799902.826, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "created_at": "2023-09-14T09:15:00.211731Z", + "is_shared": false, + "pinned": true, + "creation_mode": "default", + "sample_items_count": 0, + "item_count": 7, + "created_by_system": true, + "dashboard_id": 1, + "lastRefreshed": "2023-10-20T10:20:11.963Z", + "refreshAge": 2690, + "lifecycle_count": 2, + "trends_count": 3, + "funnels_count": 1, + "retention_count": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:02.840000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["LemonButton__content"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton__content" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 0.0, + "tag_name": "span", + "text": "No date range override" + }, + { + "attr_class": [ + "LemonButton", + "LemonButton--has-icon", + "LemonButton--has-side-icon", + "LemonButton--secondary", + "LemonButton--small", + "LemonButton--status-stealth" + ], + "attr_id": "daterange_selector", + "attributes": { + "attr__aria-disabled": "false", + "attr__aria-haspopup": "true", + "attr__class": "LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--has-icon LemonButton--has-side-icon", + "attr__data-attr": "date-filter", + "attr__id": "daterange_selector", + "attr__type": "button" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "button", + "text": "No date range override" + }, + { + "attr_class": ["flex", "h-8", "items-center", "shrink-0"], + "attr_id": null, + "attributes": { + "attr__class": "flex shrink-0 items-center h-8" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex", "space-x-4"], + "attr_id": null, + "attributes": { + "attr__class": "flex space-x-4" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex", "justify-between", "space-x-4"], + "attr_id": null, + "attributes": { + "attr__class": "flex space-x-4 justify-between" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["dashboard"], + "attr_id": null, + "attributes": { + "attr__class": "dashboard" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["project-homepage"], + "attr_id": null, + "attributes": { + "attr__class": "project-homepage" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000__scene"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000__scene" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "main", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 12.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "span.LemonButton__content:attr__class=\"LemonButton__content\"nth-child=\"2\"nth-of-type=\"2\"text=\"No date range override\";button.LemonButton.LemonButton--has-icon.LemonButton--has-side-icon.LemonButton--secondary.LemonButton--small.LemonButton--status-stealth:attr__aria-disabled=\"false\"attr__aria-haspopup=\"true\"attr__class=\"LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--has-icon LemonButton--has-side-icon\"attr__data-attr=\"date-filter\"attr__id=\"daterange_selector\"attr__type=\"button\"attr_id=\"daterange_selector\"nth-child=\"1\"nth-of-type=\"1\"text=\"No date range override\";div.flex.h-8.items-center.shrink-0:attr__class=\"flex shrink-0 items-center h-8\"nth-child=\"1\"nth-of-type=\"1\";div.flex.space-x-4:attr__class=\"flex space-x-4\"nth-child=\"1\"nth-of-type=\"1\";div.flex.justify-between.space-x-4:attr__class=\"flex space-x-4 justify-between\"nth-child=\"1\"nth-of-type=\"1\";div:nth-child=\"1\"nth-of-type=\"1\";div.dashboard:attr__class=\"dashboard\"nth-child=\"1\"nth-of-type=\"1\";div.project-homepage:attr__class=\"project-homepage\"nth-child=\"1\"nth-of-type=\"1\";div.Navigation3000__scene:attr__class=\"Navigation3000__scene\"nth-child=\"2\"nth-of-type=\"2\";main:nth-child=\"4\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-9bd1-7a01-9caf-50416be478be", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "t8lxw271peuuit3u", + "$time": 1697799904.209, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "No date range override", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:04.317000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:04.223000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": [ + "LemonButton", + "LemonButton--full-width", + "LemonButton--status-stealth", + "LemonButton--tertiary" + ], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--full-width", + "attr__type": "button" + }, + "href": null, + "nth_child": 15.0, + "nth_of_type": 14.0, + "order": 0.0, + "tag_name": "button", + "text": "From custom date until now\u2026" + }, + { + "attr_class": ["space-y-px"], + "attr_id": null, + "attributes": { + "attr__class": "space-y-px" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__content"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__box"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__box" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover", "Popover--actionable", "Popover--enter-done"], + "attr_id": null, + "attributes": { + "attr__aria-level": "0", + "attr__class": "Popover Popover--actionable Popover--enter-done", + "attr__data-placement": "bottom-start", + "attr__style": "position: fixed; top: 95.544px; left: 318.838px; max-height: 759.456px; max-width: 1189.16px; width: initial;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__data-floating-ui-portal": "\"attr__id=", + "floating-ui-6\"attr_id": "floating-ui-6" + }, + "href": null, + "nth_child": 16.0, + "nth_of_type": 12.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "button.LemonButton.LemonButton--full-width.LemonButton--status-stealth.LemonButton--tertiary:attr__class=\"LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--full-width\"attr__type=\"button\"nth-child=\"15\"nth-of-type=\"14\"text=\"From custom date until now\u2026\";div.space-y-px:attr__class=\"space-y-px\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__content:attr__class=\"Popover__content\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__box:attr__class=\"Popover__box\"nth-child=\"1\"nth-of-type=\"1\";div.Popover.Popover--actionable.Popover--enter-done:attr__aria-level=\"0\"attr__class=\"Popover Popover--actionable Popover--enter-done\"attr__data-placement=\"bottom-start\"attr__style=\"position: fixed; top: 95.544px; left: 318.838px; max-height: 759.456px; max-width: 1189.16px; width: initial;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__data-floating-ui-portal=\"\"attr__id=\"floating-ui-6\"attr_id=\"floating-ui-6\"nth-child=\"16\"nth-of-type=\"12\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-a773-7fd0-a00b-6d36dbcef384", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "aeet4il6oqfjrsgl", + "$time": 1697799907.188, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "From custom date until now\u2026", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:07.436000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:07.200000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["LemonIcon"], + "attr_id": null, + "attributes": { + "attr__aria-hidden": "true", + "attr__class": "LemonIcon", + "attr__fill": "none", + "attr__focusable": "false", + "attr__height": "1em", + "attr__viewBox": "0 0 24 24", + "attr__width": "1em", + "attr__xmlns": "http://www.w3.org/2000/svg" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "svg", + "text": null + }, + { + "attr_class": ["LemonButton__icon"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton__icon" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "span", + "text": null + }, + { + "attr_class": [ + "LemonButton", + "LemonButton--full-width", + "LemonButton--has-icon", + "LemonButton--no-content", + "LemonButton--status-stealth", + "LemonButton--tertiary", + "absolute-left" + ], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--full-width LemonButton--no-content LemonButton--has-icon absolute-left", + "attr__data-attr": "lemon-calendar-month-previous", + "attr__type": "button" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "button", + "text": null + }, + { + "attr_class": ["relative"], + "attr_id": null, + "attributes": { + "attr__class": "relative" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "th", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "tr", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "thead", + "text": null + }, + { + "attr_class": ["LemonCalendar__month"], + "attr_id": null, + "attributes": { + "attr__class": "LemonCalendar__month", + "attr__data-attr": "lemon-calendar-month" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "table", + "text": null + }, + { + "attr_class": ["LemonCalendar", "flex", "gap-4", "items-start"], + "attr_id": null, + "attributes": { + "attr__class": "LemonCalendar flex items-start gap-4", + "attr__data-attr": "lemon-calendar" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["p-2"], + "attr_id": null, + "attributes": { + "attr__class": "p-2" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["LemonCalendarSelect"], + "attr_id": null, + "attributes": { + "attr__class": "LemonCalendarSelect", + "attr__data-attr": "lemon-calendar-select" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__content"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__box"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__box" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover", "Popover--actionable", "Popover--enter-done"], + "attr_id": null, + "attributes": { + "attr__aria-level": "0", + "attr__class": "Popover Popover--actionable Popover--enter-done", + "attr__data-placement": "bottom-start", + "attr__style": "position: fixed; top: 96px; left: 316px; max-height: 759px; max-width: 1192px; width: initial;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 12.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__data-floating-ui-portal": "\"attr__id=", + "floating-ui-6\"attr_id": "floating-ui-6" + }, + "href": null, + "nth_child": 16.0, + "nth_of_type": 12.0, + "order": 13.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 14.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "svg.LemonIcon:attr__aria-hidden=\"true\"attr__class=\"LemonIcon\"attr__fill=\"none\"attr__focusable=\"false\"attr__height=\"1em\"attr__viewBox=\"0 0 24 24\"attr__width=\"1em\"attr__xmlns=\"http://www.w3.org/2000/svg\"nth-child=\"1\"nth-of-type=\"1\";span.LemonButton__icon:attr__class=\"LemonButton__icon\"nth-child=\"1\"nth-of-type=\"1\";button.LemonButton.LemonButton--full-width.LemonButton--has-icon.LemonButton--no-content.LemonButton--status-stealth.LemonButton--tertiary.absolute-left:attr__class=\"LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--full-width LemonButton--no-content LemonButton--has-icon absolute-left\"attr__data-attr=\"lemon-calendar-month-previous\"attr__type=\"button\"nth-child=\"1\"nth-of-type=\"1\";th.relative:attr__class=\"relative\"nth-child=\"1\"nth-of-type=\"1\";tr:nth-child=\"1\"nth-of-type=\"1\";thead:nth-child=\"1\"nth-of-type=\"1\";table.LemonCalendar__month:attr__class=\"LemonCalendar__month\"attr__data-attr=\"lemon-calendar-month\"nth-child=\"1\"nth-of-type=\"1\";div.LemonCalendar.flex.gap-4.items-start:attr__class=\"LemonCalendar flex items-start gap-4\"attr__data-attr=\"lemon-calendar\"nth-child=\"1\"nth-of-type=\"1\";div.p-2:attr__class=\"p-2\"nth-child=\"2\"nth-of-type=\"2\";div.LemonCalendarSelect:attr__class=\"LemonCalendarSelect\"attr__data-attr=\"lemon-calendar-select\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__content:attr__class=\"Popover__content\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__box:attr__class=\"Popover__box\"nth-child=\"1\"nth-of-type=\"1\";div.Popover.Popover--actionable.Popover--enter-done:attr__aria-level=\"0\"attr__class=\"Popover Popover--actionable Popover--enter-done\"attr__data-placement=\"bottom-start\"attr__style=\"position: fixed; top: 96px; left: 316px; max-height: 759px; max-width: 1192px; width: initial;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__data-floating-ui-portal=\"\"attr__id=\"floating-ui-6\"attr_id=\"floating-ui-6\"nth-child=\"16\"nth-of-type=\"12\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-adb8-743c-8b0c-2d058759323d", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "b1np3outhrtw2umv", + "$time": 1697799908.792, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:10.440000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:08.797000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__d": "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z", + "attr__fill": "currentColor" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "path", + "text": null + }, + { + "attr_class": ["LemonIcon"], + "attr_id": null, + "attributes": { + "attr__aria-hidden": "true", + "attr__class": "LemonIcon", + "attr__fill": "none", + "attr__focusable": "false", + "attr__height": "1em", + "attr__viewBox": "0 0 24 24", + "attr__width": "1em", + "attr__xmlns": "http://www.w3.org/2000/svg" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "svg", + "text": null + }, + { + "attr_class": ["LemonButton__icon"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton__icon" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "span", + "text": null + }, + { + "attr_class": [ + "LemonButton", + "LemonButton--has-icon", + "LemonButton--no-content", + "LemonButton--no-padding", + "LemonButton--small", + "LemonButton--status-stealth", + "LemonButton--tertiary" + ], + "attr_id": null, + "attributes": { + "attr__aria-label": "close", + "attr__class": "LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--no-padding LemonButton--small LemonButton--no-content LemonButton--has-icon", + "attr__type": "button" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "button", + "text": null + }, + { + "attr_class": ["border-b", "flex", "justify-between", "p-2", "pb-4"], + "attr_id": null, + "attributes": { + "attr__class": "flex justify-between border-b p-2 pb-4" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["LemonCalendarSelect"], + "attr_id": null, + "attributes": { + "attr__class": "LemonCalendarSelect", + "attr__data-attr": "lemon-calendar-select" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__content"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__box"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__box" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover", "Popover--actionable", "Popover--enter-done"], + "attr_id": null, + "attributes": { + "attr__aria-level": "0", + "attr__class": "Popover Popover--actionable Popover--enter-done", + "attr__data-placement": "bottom-start", + "attr__style": "position: fixed; top: 96px; left: 316px; max-height: 759px; max-width: 1192px; width: initial;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__data-floating-ui-portal": "\"attr__id=", + "floating-ui-6\"attr_id": "floating-ui-6" + }, + "href": null, + "nth_child": 16.0, + "nth_of_type": 12.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "path:attr__d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\"attr__fill=\"currentColor\"nth-child=\"1\"nth-of-type=\"1\";svg.LemonIcon:attr__aria-hidden=\"true\"attr__class=\"LemonIcon\"attr__fill=\"none\"attr__focusable=\"false\"attr__height=\"1em\"attr__viewBox=\"0 0 24 24\"attr__width=\"1em\"attr__xmlns=\"http://www.w3.org/2000/svg\"nth-child=\"1\"nth-of-type=\"1\";span.LemonButton__icon:attr__class=\"LemonButton__icon\"nth-child=\"1\"nth-of-type=\"1\";button.LemonButton.LemonButton--has-icon.LemonButton--no-content.LemonButton--no-padding.LemonButton--small.LemonButton--status-stealth.LemonButton--tertiary:attr__aria-label=\"close\"attr__class=\"LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--no-padding LemonButton--small LemonButton--no-content LemonButton--has-icon\"attr__type=\"button\"nth-child=\"2\"nth-of-type=\"1\";div.border-b.flex.justify-between.p-2.pb-4:attr__class=\"flex justify-between border-b p-2 pb-4\"nth-child=\"1\"nth-of-type=\"1\";div.LemonCalendarSelect:attr__class=\"LemonCalendarSelect\"attr__data-attr=\"lemon-calendar-select\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__content:attr__class=\"Popover__content\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__box:attr__class=\"Popover__box\"nth-child=\"1\"nth-of-type=\"1\";div.Popover.Popover--actionable.Popover--enter-done:attr__aria-level=\"0\"attr__class=\"Popover Popover--actionable Popover--enter-done\"attr__data-placement=\"bottom-start\"attr__style=\"position: fixed; top: 96px; left: 316px; max-height: 759px; max-width: 1192px; width: initial;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__data-floating-ui-portal=\"\"attr__id=\"floating-ui-6\"attr_id=\"floating-ui-6\"nth-child=\"16\"nth-of-type=\"12\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-b4f2-7fd1-96fd-33b43dbbba31", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "q4ton426hanvq70d", + "$time": 1697799910.643, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:13.450000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:10.652000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": [ + "LemonButton", + "LemonButton--status-stealth", + "LemonButton--tertiary", + "RollingDateRangeFilter", + "ant-tooltip-open" + ], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton LemonButton--tertiary LemonButton--status-stealth RollingDateRangeFilter ant-tooltip-open", + "attr__data-attr": "rolling-date-range-filter", + "attr__type": "button" + }, + "href": null, + "nth_child": 13.0, + "nth_of_type": 13.0, + "order": 0.0, + "tag_name": "button", + "text": null + }, + { + "attr_class": ["space-y-px"], + "attr_id": null, + "attributes": { + "attr__class": "space-y-px" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__content"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__box"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__box" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover", "Popover--actionable", "Popover--enter-done"], + "attr_id": null, + "attributes": { + "attr__aria-level": "0", + "attr__class": "Popover Popover--actionable Popover--enter-done", + "attr__data-placement": "bottom-start", + "attr__style": "position: fixed; top: 96px; left: 316px; max-height: 759px; max-width: 1192px; width: initial;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__data-floating-ui-portal": "\"attr__id=", + "floating-ui-6\"attr_id": "floating-ui-6" + }, + "href": null, + "nth_child": 16.0, + "nth_of_type": 12.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "button.LemonButton.LemonButton--status-stealth.LemonButton--tertiary.RollingDateRangeFilter.ant-tooltip-open:attr__class=\"LemonButton LemonButton--tertiary LemonButton--status-stealth RollingDateRangeFilter ant-tooltip-open\"attr__data-attr=\"rolling-date-range-filter\"attr__type=\"button\"nth-child=\"13\"nth-of-type=\"13\";div.space-y-px:attr__class=\"space-y-px\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__content:attr__class=\"Popover__content\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__box:attr__class=\"Popover__box\"nth-child=\"1\"nth-of-type=\"1\";div.Popover.Popover--actionable.Popover--enter-done:attr__aria-level=\"0\"attr__class=\"Popover Popover--actionable Popover--enter-done\"attr__data-placement=\"bottom-start\"attr__style=\"position: fixed; top: 96px; left: 316px; max-height: 759px; max-width: 1192px; width: initial;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__data-floating-ui-portal=\"\"attr__id=\"floating-ui-6\"attr_id=\"floating-ui-6\"nth-child=\"16\"nth-of-type=\"12\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-ba8a-744a-9296-ae83a0fb678c", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "9hbicf15by04k3kk", + "$time": 1697799912.074, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:13.450000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:12.083000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "dashboard date range changed", + "id": "018b4cc2-ba98-7ad6-98aa-a99547036166", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "uwqspa6yuoq5q75h", + "$time": 1697799912.089, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "date_from": "-3d", + "date_to": "", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:13.450000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:12.098000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "dashboard analyzed", + "id": "018b4cc2-bb85-7403-a87c-f4ba1a76997f", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "6q7tobdbp8r841sq", + "$time": 1697799912.326, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "created_at": "2023-09-14T09:15:00.211731Z", + "is_shared": false, + "pinned": true, + "creation_mode": "default", + "sample_items_count": 0, + "item_count": 7, + "created_by_system": true, + "dashboard_id": 1, + "lastRefreshed": "2023-10-20T10:20:11.963Z", + "refreshAge": 2700, + "lifecycle_count": 2, + "trends_count": 3, + "funnels_count": 1, + "retention_count": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:13.450000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:12.335000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4cc2-bc1a-78b3-8dd2-62a1da584a79", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "rlklgku5nltwckj1", + "$time": 1697799912.475, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "hogql-insights", + "$feature_flag_response": false, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:13.450000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:12.484000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "dashboard refreshed", + "id": "018b4cc2-bc66-7cf9-b8b3-9b34a5a4bda5", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "lacrgsirai9uzwji", + "$time": 1697799912.551, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "dashboard_id": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:13.450000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:12.560000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["LemonButton__content"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton__content" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 0.0, + "tag_name": "span", + "text": "Last 3 days" + }, + { + "attr_class": [ + "LemonButton", + "LemonButton--has-icon", + "LemonButton--has-side-icon", + "LemonButton--secondary", + "LemonButton--small", + "LemonButton--status-stealth" + ], + "attr_id": "daterange_selector", + "attributes": { + "attr__aria-disabled": "false", + "attr__aria-haspopup": "true", + "attr__class": "LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--has-icon LemonButton--has-side-icon", + "attr__data-attr": "date-filter", + "attr__id": "daterange_selector", + "attr__type": "button" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "button", + "text": "Last 3 days" + }, + { + "attr_class": ["flex", "h-8", "items-center", "shrink-0"], + "attr_id": null, + "attributes": { + "attr__class": "flex shrink-0 items-center h-8" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex", "space-x-4"], + "attr_id": null, + "attributes": { + "attr__class": "flex space-x-4" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex", "justify-between", "space-x-4"], + "attr_id": null, + "attributes": { + "attr__class": "flex space-x-4 justify-between" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["dashboard"], + "attr_id": null, + "attributes": { + "attr__class": "dashboard" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["project-homepage"], + "attr_id": null, + "attributes": { + "attr__class": "project-homepage" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000__scene"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000__scene" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "main", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 12.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "span.LemonButton__content:attr__class=\"LemonButton__content\"nth-child=\"2\"nth-of-type=\"2\"text=\"Last 3 days\";button.LemonButton.LemonButton--has-icon.LemonButton--has-side-icon.LemonButton--secondary.LemonButton--small.LemonButton--status-stealth:attr__aria-disabled=\"false\"attr__aria-haspopup=\"true\"attr__class=\"LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--has-icon LemonButton--has-side-icon\"attr__data-attr=\"date-filter\"attr__id=\"daterange_selector\"attr__type=\"button\"attr_id=\"daterange_selector\"nth-child=\"1\"nth-of-type=\"1\"text=\"Last 3 days\";div.flex.h-8.items-center.shrink-0:attr__class=\"flex shrink-0 items-center h-8\"nth-child=\"1\"nth-of-type=\"1\";div.flex.space-x-4:attr__class=\"flex space-x-4\"nth-child=\"1\"nth-of-type=\"1\";div.flex.justify-between.space-x-4:attr__class=\"flex space-x-4 justify-between\"nth-child=\"1\"nth-of-type=\"1\";div:nth-child=\"1\"nth-of-type=\"1\";div.dashboard:attr__class=\"dashboard\"nth-child=\"1\"nth-of-type=\"1\";div.project-homepage:attr__class=\"project-homepage\"nth-child=\"1\"nth-of-type=\"1\";div.Navigation3000__scene:attr__class=\"Navigation3000__scene\"nth-child=\"2\"nth-of-type=\"2\";main:nth-child=\"4\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-bfa8-7a18-88bc-4c4df6cabd69", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "h9m0b1qconuwsw62", + "$time": 1697799913.386, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "Last 3 days", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:13.450000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:13.395000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight refresh time", + "id": "018b4cc2-c072-7506-930b-471161be099f", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "jnfwtms067nt0iva", + "$time": 1697799913.586, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 1053, + "insightShortId": "dr2P0xDf", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:13.602000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight refresh time", + "id": "018b4cc2-c10e-75bc-9275-189e47433d83", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "c2ryrw33lz0vijd7", + "$time": 1697799913.743, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 1210, + "insightShortId": "gynVFet7", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:13.759000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight refresh time", + "id": "018b4cc2-c252-7c6f-b0d3-e2f321447b77", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "u7298ffp3754ebcm", + "$time": 1697799914.066, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 1534, + "insightShortId": "XijxpxgK", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:14.082000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight refresh time", + "id": "018b4cc2-c3c4-7ea1-8759-3043985f1e2a", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "sij6r7mjdn0dkglr", + "$time": 1697799914.436, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 1904, + "insightShortId": "12cRYEnk", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:14.453000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight refresh time", + "id": "018b4cc2-c4f5-77be-993e-9d88a05d46f8", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "gh9axm48pflzlu2l", + "$time": 1697799914.742, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 2209, + "insightShortId": "VRqTSTUU", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:14.758000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight refresh time", + "id": "018b4cc2-c5f7-7ff9-ac9c-9b0b7d7fcf7b", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "sshoh198v54qzg5s", + "$time": 1697799914.999, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 2466, + "insightShortId": "X4vwqdC6", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:15.015000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight refresh time", + "id": "018b4cc2-c6f4-7638-b108-639ce32e1062", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "45hmgrym77londxt", + "$time": 1697799915.253, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "loadingMilliseconds": 2720, + "insightShortId": "vTZuWkZE", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:15.269000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": [ + "LemonButton", + "LemonButton--full-width", + "LemonButton--status-stealth", + "LemonButton--tertiary" + ], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--full-width", + "attr__type": "button" + }, + "href": null, + "nth_child": 16.0, + "nth_of_type": 15.0, + "order": 0.0, + "tag_name": "button", + "text": "Custom fixed date range\u2026" + }, + { + "attr_class": ["space-y-px"], + "attr_id": null, + "attributes": { + "attr__class": "space-y-px" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__content"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover__box"], + "attr_id": null, + "attributes": { + "attr__class": "Popover__box" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Popover", "Popover--actionable", "Popover--enter-done"], + "attr_id": null, + "attributes": { + "attr__aria-level": "0", + "attr__class": "Popover Popover--actionable Popover--enter-done", + "attr__data-placement": "bottom-start", + "attr__style": "position: fixed; top: 95.5747px; left: 317.718px; max-height: 759.425px; max-width: 1190.28px; width: initial;" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__data-floating-ui-portal": "\"attr__id=", + "floating-ui-6\"attr_id": "floating-ui-6" + }, + "href": null, + "nth_child": 16.0, + "nth_of_type": 12.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "button.LemonButton.LemonButton--full-width.LemonButton--status-stealth.LemonButton--tertiary:attr__class=\"LemonButton LemonButton--tertiary LemonButton--status-stealth LemonButton--full-width\"attr__type=\"button\"nth-child=\"16\"nth-of-type=\"15\"text=\"Custom fixed date range\u2026\";div.space-y-px:attr__class=\"space-y-px\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__content:attr__class=\"Popover__content\"nth-child=\"1\"nth-of-type=\"1\";div.Popover__box:attr__class=\"Popover__box\"nth-child=\"1\"nth-of-type=\"1\";div.Popover.Popover--actionable.Popover--enter-done:attr__aria-level=\"0\"attr__class=\"Popover Popover--actionable Popover--enter-done\"attr__data-placement=\"bottom-start\"attr__style=\"position: fixed; top: 95.5747px; left: 317.718px; max-height: 759.425px; max-width: 1190.28px; width: initial;\"nth-child=\"1\"nth-of-type=\"1\";div:attr__data-floating-ui-portal=\"\"attr__id=\"floating-ui-6\"attr_id=\"floating-ui-6\"nth-child=\"16\"nth-of-type=\"12\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-caed-756a-af22-999c0b649d92", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ubrot88ulvd6b8lg", + "$time": 1697799916.27, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "Custom fixed date range\u2026", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:16.465000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:16.286000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": null, + "attr_id": null, + "attributes": { + "attr__clip-rule": "evenodd", + "attr__d": "M12.162 3.12a.25.25 0 0 0-.324 0l-7.25 6.152a.25.25 0 0 0-.088.191v9.787c0 .138.112.25.25.25h4a.25.25 0 0 0 .25-.25v-3.5c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v3.5c0 .138.112.25.25.25h4a.25.25 0 0 0 .25-.25V9.463a.25.25 0 0 0-.088-.19l-7.25-6.152Zm-1.294-1.143a1.75 1.75 0 0 1 2.264 0l7.25 6.152c.392.332.618.82.618 1.334v9.787A1.75 1.75 0 0 1 19.25 21h-4a1.75 1.75 0 0 1-1.75-1.75v-3.5a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25v3.5A1.75 1.75 0 0 1 8.75 21h-4A1.75 1.75 0 0 1 3 19.25V9.463c0-.514.226-1.002.618-1.334l7.25-6.152Z", + "attr__fill-rule": "evenodd", + "attr__href": "/home" + }, + "href": "/home", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "path", + "text": null + }, + { + "attr_class": ["LemonIcon"], + "attr_id": null, + "attributes": { + "attr__class": "LemonIcon", + "attr__fill": "currentColor", + "attr__viewBox": "0 0 24 24", + "attr__width": "100%", + "attr__xmlns": "http://www.w3.org/2000/svg" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "svg", + "text": null + }, + { + "attr_class": ["LemonButton__icon"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton__icon" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "span", + "text": null + }, + { + "attr_class": [ + "LemonButton", + "LemonButton--has-icon", + "LemonButton--no-content", + "LemonButton--status-primary", + "LemonButton--tertiary", + "Link", + "ant-tooltip-open" + ], + "attr_id": null, + "attributes": { + "attr__class": "Link LemonButton LemonButton--tertiary LemonButton--status-primary LemonButton--no-content LemonButton--has-icon ant-tooltip-open", + "attr__data-attr": "menu-item-projecthomepage", + "attr__draggable": "true", + "attr__href": "/home" + }, + "href": "/home", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "a", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "li", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "ul", + "text": null + }, + { + "attr_class": ["Navbar3000__top"], + "attr_id": null, + "attributes": { + "attr__class": "Navbar3000__top" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navbar3000__content"], + "attr_id": null, + "attributes": { + "attr__class": "Navbar3000__content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navbar3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navbar3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 8.0, + "tag_name": "nav", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "path:attr__clip-rule=\"evenodd\"attr__d=\"M12.162 3.12a.25.25 0 0 0-.324 0l-7.25 6.152a.25.25 0 0 0-.088.191v9.787c0 .138.112.25.25.25h4a.25.25 0 0 0 .25-.25v-3.5c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v3.5c0 .138.112.25.25.25h4a.25.25 0 0 0 .25-.25V9.463a.25.25 0 0 0-.088-.19l-7.25-6.152Zm-1.294-1.143a1.75 1.75 0 0 1 2.264 0l7.25 6.152c.392.332.618.82.618 1.334v9.787A1.75 1.75 0 0 1 19.25 21h-4a1.75 1.75 0 0 1-1.75-1.75v-3.5a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25v3.5A1.75 1.75 0 0 1 8.75 21h-4A1.75 1.75 0 0 1 3 19.25V9.463c0-.514.226-1.002.618-1.334l7.25-6.152Z\"attr__fill-rule=\"evenodd\"attr__href=\"/home\"href=\"/home\"nth-child=\"1\"nth-of-type=\"1\";svg.LemonIcon:attr__class=\"LemonIcon\"attr__fill=\"currentColor\"attr__viewBox=\"0 0 24 24\"attr__width=\"100%\"attr__xmlns=\"http://www.w3.org/2000/svg\"nth-child=\"1\"nth-of-type=\"1\";span.LemonButton__icon:attr__class=\"LemonButton__icon\"nth-child=\"1\"nth-of-type=\"1\";a.LemonButton.LemonButton--has-icon.LemonButton--no-content.LemonButton--status-primary.LemonButton--tertiary.Link.ant-tooltip-open:attr__class=\"Link LemonButton LemonButton--tertiary LemonButton--status-primary LemonButton--no-content LemonButton--has-icon ant-tooltip-open\"attr__data-attr=\"menu-item-projecthomepage\"attr__draggable=\"true\"attr__href=\"/home\"href=\"/home\"nth-child=\"1\"nth-of-type=\"1\";li:nth-child=\"1\"nth-of-type=\"1\";ul:nth-child=\"1\"nth-of-type=\"1\";div.Navbar3000__top:attr__class=\"Navbar3000__top\"nth-child=\"1\"nth-of-type=\"1\";div.Navbar3000__content:attr__class=\"Navbar3000__content\"nth-child=\"1\"nth-of-type=\"1\";nav.Navbar3000:attr__class=\"Navbar3000\"nth-child=\"1\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-d38c-7d90-9fc6-230883fb4c9d", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "az8i1ijfsp7dcu8f", + "$time": 1697799918.476, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:19.477000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:18.486000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4cc2-d395-72e8-a051-8b267d8e7066", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "wqe2gfkuym7xcp8o", + "$time": 1697799918.485, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "product-specific-onboarding", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:19.477000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:18.495000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4cc2-d398-7794-933f-fa78a242c2cb", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "pbwgsdeb7kudbck5", + "$time": 1697799918.489, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "title": "Homepage \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:19.477000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:18.498000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": [ + "LemonButton", + "LemonButton--has-icon", + "LemonButton--has-side-icon", + "LemonButton--primary", + "LemonButton--small", + "LemonButton--status-primary", + "Link" + ], + "attr_id": null, + "attributes": { + "attr__class": "Link LemonButton LemonButton--primary LemonButton--status-primary LemonButton--small LemonButton--has-icon LemonButton--has-side-icon", + "attr__data-attr": "saved-insights-new-insight-button", + "attr__draggable": "true", + "attr__href": "/insights/new" + }, + "href": "/insights/new", + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "a", + "text": "New insight" + }, + { + "attr_class": ["LemonButtonWithSideAction", "LemonButtonWithSideAction--small"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButtonWithSideAction LemonButtonWithSideAction--small" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Breadcrumbs3000__actions"], + "attr_id": null, + "attributes": { + "attr__class": "Breadcrumbs3000__actions" + }, + "href": null, + "nth_child": 7.0, + "nth_of_type": 6.0, + "order": 2.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Breadcrumbs3000"], + "attr_id": null, + "attributes": { + "attr__class": "Breadcrumbs3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "main", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "a.LemonButton.LemonButton--has-icon.LemonButton--has-side-icon.LemonButton--primary.LemonButton--small.LemonButton--status-primary.Link:attr__class=\"Link LemonButton LemonButton--primary LemonButton--status-primary LemonButton--small LemonButton--has-icon LemonButton--has-side-icon\"attr__data-attr=\"saved-insights-new-insight-button\"attr__draggable=\"true\"attr__href=\"/insights/new\"href=\"/insights/new\"nth-child=\"1\"nth-of-type=\"1\"text=\"New insight\";div.LemonButtonWithSideAction.LemonButtonWithSideAction--small:attr__class=\"LemonButtonWithSideAction LemonButtonWithSideAction--small\"nth-child=\"2\"nth-of-type=\"1\";div.Breadcrumbs3000__actions:attr__class=\"Breadcrumbs3000__actions\"nth-child=\"7\"nth-of-type=\"6\";div.Breadcrumbs3000:attr__class=\"Breadcrumbs3000\"nth-child=\"1\"nth-of-type=\"1\";main:nth-child=\"4\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-d79c-7232-afc4-a7c7814d2b09", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$host": "localhost:8000", + "$pathname": "/home", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ak2ihfmu0jx88a2d", + "$time": 1697799919.516, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "New insight", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/home", + "$pathname": "/home", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/home", + "$initial_pathname": "/home", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:22.490000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:19.533000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4cc2-d81e-7875-a2ac-8846ffd710c1", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ccaf8o48a027gcdt", + "$time": 1697799919.646, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "funnels-cue-opt-out-7301", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:22.490000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:19.663000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4cc2-d835-7d31-af5a-5294ec922967", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "fnd160khukj3ji6d", + "$time": 1697799919.669, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "smoothing-interval", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:22.490000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:19.686000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4cc2-d922-77e2-bc50-8d34466436e3", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "p3n4m8xa3afpo3tx", + "$time": 1697799919.906, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "title": "Unnamed \u2022 Insights \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:22.490000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:19.923000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "query completed", + "id": "018b4cc2-d937-7dc2-a69b-339daae7720d", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "b1ukfohazj37608n", + "$time": 1697799919.927, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "query": { + "kind": "TrendsQuery", + "filterTestAccounts": false, + "series": [ + { + "kind": "EventsNode", + "event": "$pageview", + "name": "$pageview", + "math": "total" + } + ], + "interval": "day", + "trendsFilter": { + "display": "ActionsLineGraph" + } + }, + "duration": 275.5999999642372, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:22.490000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:19.944000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight created", + "id": "018b4cc2-d9b7-7c1f-a9e9-94c564b7a7de", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "wj66f9ygnvcad5wh", + "$time": 1697799920.055, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "insight": "TRENDS", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:22.490000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:20.072000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["LemonButton__content"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton__content" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 0.0, + "tag_name": "span", + "text": "Last 7 days" + }, + { + "attr_class": [ + "LemonButton", + "LemonButton--has-icon", + "LemonButton--has-side-icon", + "LemonButton--secondary", + "LemonButton--small", + "LemonButton--status-stealth" + ], + "attr_id": "daterange_selector", + "attributes": { + "attr__aria-disabled": "false", + "attr__aria-haspopup": "true", + "attr__class": "LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--has-icon LemonButton--has-side-icon", + "attr__data-attr": "date-filter", + "attr__id": "daterange_selector", + "attr__type": "button" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "button", + "text": "Last 7 days" + }, + { + "attr_class": ["flex", "items-center", "space-x-2", "text-sm"], + "attr_id": null, + "attributes": { + "attr__class": "space-x-2 flex items-center text-sm" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "span", + "text": null + }, + { + "attr_class": ["flex", "flex-wrap", "gap-x-2", "gap-y-2", "items-center", "my-2"], + "attr_id": null, + "attributes": { + "attr__class": "flex items-center gap-x-2 flex-wrap my-2 gap-y-2" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex", "flex-wrap", "items-center", "justify-between"], + "attr_id": null, + "attributes": { + "attr__class": "flex justify-between items-center flex-wrap", + "attr__data-attr": "insight-filters" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card-head-title"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card-head-title" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card-head-wrapper"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card-head-wrapper" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card-head"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card-head" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card", "ant-card-bordered", "insights-graph-container"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card ant-card-bordered insights-graph-container", + "attr__data-attr": "insights-graph" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["insights-container"], + "attr_id": null, + "attributes": { + "attr__class": "insights-container", + "attr__data-attr": "insight-view" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["insight-wrapper"], + "attr_id": null, + "attributes": { + "attr__class": "insight-wrapper" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 4.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["insights-page"], + "attr_id": null, + "attributes": { + "attr__class": "insights-page" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000__scene"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000__scene" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 12.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 13.0, + "tag_name": "main", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 14.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 15.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 16.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "span.LemonButton__content:attr__class=\"LemonButton__content\"nth-child=\"2\"nth-of-type=\"2\"text=\"Last 7 days\";button.LemonButton.LemonButton--has-icon.LemonButton--has-side-icon.LemonButton--secondary.LemonButton--small.LemonButton--status-stealth:attr__aria-disabled=\"false\"attr__aria-haspopup=\"true\"attr__class=\"LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--has-icon LemonButton--has-side-icon\"attr__data-attr=\"date-filter\"attr__id=\"daterange_selector\"attr__type=\"button\"attr_id=\"daterange_selector\"nth-child=\"1\"nth-of-type=\"1\"text=\"Last 7 days\";span.flex.items-center.space-x-2.text-sm:attr__class=\"space-x-2 flex items-center text-sm\"nth-child=\"1\"nth-of-type=\"1\";div.flex.flex-wrap.gap-x-2.gap-y-2.items-center.my-2:attr__class=\"flex items-center gap-x-2 flex-wrap my-2 gap-y-2\"nth-child=\"1\"nth-of-type=\"1\";div.flex.flex-wrap.items-center.justify-between:attr__class=\"flex justify-between items-center flex-wrap\"attr__data-attr=\"insight-filters\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card-head-title:attr__class=\"ant-card-head-title\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card-head-wrapper:attr__class=\"ant-card-head-wrapper\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card-head:attr__class=\"ant-card-head\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card.ant-card-bordered.insights-graph-container:attr__class=\"ant-card ant-card-bordered insights-graph-container\"attr__data-attr=\"insights-graph\"nth-child=\"1\"nth-of-type=\"1\";div.insights-container:attr__class=\"insights-container\"attr__data-attr=\"insight-view\"nth-child=\"2\"nth-of-type=\"2\";div.insight-wrapper:attr__class=\"insight-wrapper\"nth-child=\"4\"nth-of-type=\"4\";div.insights-page:attr__class=\"insights-page\"nth-child=\"1\"nth-of-type=\"1\";div.Navigation3000__scene:attr__class=\"Navigation3000__scene\"nth-child=\"2\"nth-of-type=\"2\";main:nth-child=\"4\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-e0d4-72f0-8d6d-5b301c3790d8", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "knfewpc9dbfjykww", + "$time": 1697799921.876, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "Last 7 days", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:22.490000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:21.893000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["LemonButton__content"], + "attr_id": null, + "attributes": { + "attr__class": "LemonButton__content" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 0.0, + "tag_name": "span", + "text": "Last 7 days" + }, + { + "attr_class": [ + "LemonButton", + "LemonButton--active", + "LemonButton--has-icon", + "LemonButton--has-side-icon", + "LemonButton--secondary", + "LemonButton--small", + "LemonButton--status-stealth" + ], + "attr_id": "daterange_selector", + "attributes": { + "attr__aria-disabled": "false", + "attr__aria-haspopup": "true", + "attr__class": "LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--active LemonButton--has-icon LemonButton--has-side-icon", + "attr__data-attr": "date-filter", + "attr__id": "daterange_selector", + "attr__type": "button" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 1.0, + "tag_name": "button", + "text": "Last 7 days" + }, + { + "attr_class": ["flex", "items-center", "space-x-2", "text-sm"], + "attr_id": null, + "attributes": { + "attr__class": "space-x-2 flex items-center text-sm" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "span", + "text": null + }, + { + "attr_class": ["flex", "flex-wrap", "gap-x-2", "gap-y-2", "items-center", "my-2"], + "attr_id": null, + "attributes": { + "attr__class": "flex items-center gap-x-2 flex-wrap my-2 gap-y-2" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["flex", "flex-wrap", "items-center", "justify-between"], + "attr_id": null, + "attributes": { + "attr__class": "flex justify-between items-center flex-wrap", + "attr__data-attr": "insight-filters" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card-head-title"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card-head-title" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card-head-wrapper"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card-head-wrapper" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card-head"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card-head" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["ant-card", "ant-card-bordered", "insights-graph-container"], + "attr_id": null, + "attributes": { + "attr__class": "ant-card ant-card-bordered insights-graph-container", + "attr__data-attr": "insights-graph" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["insights-container"], + "attr_id": null, + "attributes": { + "attr__class": "insights-container", + "attr__data-attr": "insight-view" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 9.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["insight-wrapper"], + "attr_id": null, + "attributes": { + "attr__class": "insight-wrapper" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 4.0, + "order": 10.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["insights-page"], + "attr_id": null, + "attributes": { + "attr__class": "insights-page" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 11.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000__scene"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000__scene" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 12.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 13.0, + "tag_name": "main", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 14.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 15.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 16.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "span.LemonButton__content:attr__class=\"LemonButton__content\"nth-child=\"2\"nth-of-type=\"2\"text=\"Last 7 days\";button.LemonButton.LemonButton--active.LemonButton--has-icon.LemonButton--has-side-icon.LemonButton--secondary.LemonButton--small.LemonButton--status-stealth:attr__aria-disabled=\"false\"attr__aria-haspopup=\"true\"attr__class=\"LemonButton LemonButton--secondary LemonButton--status-stealth LemonButton--small LemonButton--active LemonButton--has-icon LemonButton--has-side-icon\"attr__data-attr=\"date-filter\"attr__id=\"daterange_selector\"attr__type=\"button\"attr_id=\"daterange_selector\"nth-child=\"1\"nth-of-type=\"1\"text=\"Last 7 days\";span.flex.items-center.space-x-2.text-sm:attr__class=\"space-x-2 flex items-center text-sm\"nth-child=\"1\"nth-of-type=\"1\";div.flex.flex-wrap.gap-x-2.gap-y-2.items-center.my-2:attr__class=\"flex items-center gap-x-2 flex-wrap my-2 gap-y-2\"nth-child=\"1\"nth-of-type=\"1\";div.flex.flex-wrap.items-center.justify-between:attr__class=\"flex justify-between items-center flex-wrap\"attr__data-attr=\"insight-filters\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card-head-title:attr__class=\"ant-card-head-title\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card-head-wrapper:attr__class=\"ant-card-head-wrapper\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card-head:attr__class=\"ant-card-head\"nth-child=\"1\"nth-of-type=\"1\";div.ant-card.ant-card-bordered.insights-graph-container:attr__class=\"ant-card ant-card-bordered insights-graph-container\"attr__data-attr=\"insights-graph\"nth-child=\"1\"nth-of-type=\"1\";div.insights-container:attr__class=\"insights-container\"attr__data-attr=\"insight-view\"nth-child=\"2\"nth-of-type=\"2\";div.insight-wrapper:attr__class=\"insight-wrapper\"nth-child=\"4\"nth-of-type=\"4\";div.insights-page:attr__class=\"insights-page\"nth-child=\"1\"nth-of-type=\"1\";div.Navigation3000__scene:attr__class=\"Navigation3000__scene\"nth-child=\"2\"nth-of-type=\"2\";main:nth-child=\"4\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-e3eb-739f-9033-12ea1e9c896e", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "33gzljaml77fxfme", + "$time": 1697799922.668, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "$el_text": "Last 7 days", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:25.504000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:22.675000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [ + { + "attr_class": ["LemonTabs__tab-content"], + "attr_id": null, + "attributes": { + "attr__class": "LemonTabs__tab-content" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 0.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["LemonTabs__tab"], + "attr_id": null, + "attributes": { + "attr__aria-selected": "false", + "attr__class": "LemonTabs__tab", + "attr__role": "tab", + "attr__tabindex": "0" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 1.0, + "tag_name": "li", + "text": null + }, + { + "attr_class": ["LemonTabs__bar"], + "attr_id": null, + "attributes": { + "attr__class": "LemonTabs__bar", + "attr__role": "tablist" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 2.0, + "tag_name": "ul", + "text": null + }, + { + "attr_class": ["LemonTabs"], + "attr_id": null, + "attributes": { + "attr__class": "LemonTabs", + "attr__style": "--lemon-tabs-slider-width: 44.171875px; --lemon-tabs-slider-offset: 0px;" + }, + "href": null, + "nth_child": 3.0, + "nth_of_type": 3.0, + "order": 3.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["insights-page"], + "attr_id": null, + "attributes": { + "attr__class": "insights-page" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 4.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["Navigation3000__scene"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000__scene" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 2.0, + "order": 5.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": null, + "attributes": {}, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 6.0, + "tag_name": "main", + "text": null + }, + { + "attr_class": ["Navigation3000"], + "attr_id": null, + "attributes": { + "attr__class": "Navigation3000" + }, + "href": null, + "nth_child": 1.0, + "nth_of_type": 1.0, + "order": 7.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": null, + "attr_id": "root", + "attributes": { + "attr__id": "root" + }, + "href": null, + "nth_child": 4.0, + "nth_of_type": 1.0, + "order": 8.0, + "tag_name": "div", + "text": null + }, + { + "attr_class": ["posthog-3000"], + "attr_id": null, + "attributes": { + "attr__class": "posthog-3000", + "attr__theme": "light" + }, + "href": null, + "nth_child": 2.0, + "nth_of_type": 1.0, + "order": 9.0, + "tag_name": "body", + "text": null + } + ], + "elements_chain": "div.LemonTabs__tab-content:attr__class=\"LemonTabs__tab-content\"nth-child=\"1\"nth-of-type=\"1\";li.LemonTabs__tab:attr__aria-selected=\"false\"attr__class=\"LemonTabs__tab\"attr__role=\"tab\"attr__tabindex=\"0\"nth-child=\"2\"nth-of-type=\"2\";ul.LemonTabs__bar:attr__class=\"LemonTabs__bar\"attr__role=\"tablist\"nth-child=\"1\"nth-of-type=\"1\";div.LemonTabs:attr__class=\"LemonTabs\"attr__style=\"--lemon-tabs-slider-width: 44.171875px; --lemon-tabs-slider-offset: 0px;\"nth-child=\"3\"nth-of-type=\"3\";div.insights-page:attr__class=\"insights-page\"nth-child=\"1\"nth-of-type=\"1\";div.Navigation3000__scene:attr__class=\"Navigation3000__scene\"nth-child=\"2\"nth-of-type=\"2\";main:nth-child=\"4\"nth-of-type=\"1\";div.Navigation3000:attr__class=\"Navigation3000\"nth-child=\"1\"nth-of-type=\"1\";div:attr__id=\"root\"attr_id=\"root\"nth-child=\"4\"nth-of-type=\"1\";body.posthog-3000:attr__class=\"posthog-3000\"attr__theme=\"light\"nth-child=\"2\"nth-of-type=\"1\"", + "event": "$autocapture", + "id": "018b4cc2-f490-7227-8d35-65880c75cac8", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "dwrvit8pfft8n550", + "$time": 1697799926.928, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$event_type": "click", + "$ce_version": 1, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:28.530000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:26.936000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "query completed", + "id": "018b4cc2-f5b9-730b-9751-a1d1eb4ecce3", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "qyw1jkyxn1okzklx", + "$time": 1697799927.226, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "query": { + "kind": "FunnelsQuery", + "series": [ + { + "kind": "EventsNode", + "name": "$pageview", + "event": "$pageview" + } + ], + "funnelsFilter": { + "funnel_viz_type": "steps" + } + }, + "duration": 237.10000002384186, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:28.530000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:27.233000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight viewed", + "id": "018b4cc2-f68d-7712-8860-14242f72c761", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ing4xyzshu1yped4", + "$time": 1697799927.437, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "filters_count": 0, + "events_count": 1, + "actions_count": 0, + "funnel_viz_type": "steps", + "properties_global": [], + "properties_global_custom_count": 0, + "properties_local": [], + "properties_local_custom_count": 0, + "properties_all": [], + "aggregating_by_groups": false, + "breakdown_by_groups": false, + "using_groups": false, + "used_cohort_filter_ids": [], + "insight": "FUNNELS", + "report_delay": 0, + "is_first_component_load": true, + "from_dashboard": false, + "total_event_actions_count": 1, + "total_event_action_filters_count": 0, + "mode": "edit", + "viewer_is_creator": false, + "description_length": 0, + "tags_count": 0, + "changed_insight": "TRENDS", + "changed_entity_type": [], + "changed_interval": "day", + "changed_hidden_legend_keys": [], + "changed_funnel_viz_type": [], + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:28.530000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:27.445000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "insight analyzed", + "id": "018b4cc3-1da3-79bc-84eb-ba4883cd3036", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "679ovhx0nx9fbz6c", + "$time": 1697799937.443, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "filters_count": 0, + "events_count": 1, + "actions_count": 0, + "funnel_viz_type": "steps", + "properties_global": [], + "properties_global_custom_count": 0, + "properties_local": [], + "properties_local_custom_count": 0, + "properties_all": [], + "aggregating_by_groups": false, + "breakdown_by_groups": false, + "using_groups": false, + "used_cohort_filter_ids": [], + "insight": "FUNNELS", + "report_delay": 10, + "is_first_component_load": false, + "from_dashboard": false, + "total_event_actions_count": 1, + "total_event_action_filters_count": 0, + "mode": "edit", + "viewer_is_creator": false, + "description_length": 0, + "tags_count": 0, + "changed_insight": "TRENDS", + "changed_entity_type": [], + "changed_interval": "day", + "changed_hidden_legend_keys": [], + "changed_funnel_viz_type": [], + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:37.539000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:37.451000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageleave", + "id": "018b4cc3-513e-7fef-ab2a-04ab143a4f1c", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$host": "localhost:8000", + "$pathname": "/insights/new", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "l3xm3x64ia727uwa", + "$time": 1697799950.655, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4cc2-908b-7989-a77a-ae1396eef1de", + "$window_id": "018b4cc2-908b-7989-a77a-ae1465fa2118", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/insights/new", + "$pathname": "/insights/new", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/insights/new", + "$initial_pathname": "/insights/new", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:50.657000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:50.674000+00:00", + "uuid": null + } + ], + "recording_duration_s": 50.0, + "sessionId": "018b4cc2-908b-7989-a77a-ae1396eef1de" + }, + { + "events": [ + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$set", + "id": "018b4ca3-1d07-7195-8202-c8a0a4015ef4", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "l2e0vvj7g4kj2vyc", + "$time": 1697797840.135, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$set": { + "email": "test@posthog.com", + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.150000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4ca3-1d08-72d6-8912-1c884aeb47ae", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "wla12x9igfbgty32", + "$time": 1697797840.136, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "project", + "$group_key": "018a92f8-b602-0000-75de-4b9073693531", + "$group_set": { + "id": 1, + "uuid": "018a92f8-b602-0000-75de-4b9073693531", + "name": "Hedgebox", + "ingested_event": true, + "is_demo": false, + "timezone": "UTC", + "instance_tag": "none" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.151000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4ca3-1d09-7c1f-b227-cf790742dcb0", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "v9gjsx4xig703btp", + "$time": 1697797840.137, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "organization", + "$group_key": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_set": { + "id": "018a92f8-afff-0000-efec-ca77de39e384", + "name": "Hedgebox Inc.", + "slug": "hedgebox-inc", + "created_at": "2023-09-14T09:14:46.145060Z", + "available_features": [ + "zapier", + "slack_integration", + "microsoft_teams_integration", + "discord_integration", + "apps", + "app_metrics", + "boolean_flags", + "multivariate_flags", + "persist_flags_cross_authentication", + "feature_flag_payloads", + "multiple_release_conditions", + "release_condition_overrides", + "targeting_by_group", + "local_evaluation_and_bootstrapping", + "flag_usage_stats", + "experimentation", + "group_experiments", + "funnel_experiments", + "secondary_metrics", + "statistical_analysis", + "console_logs", + "recordings_playlists", + "recordings_performance", + "recordings_file_export", + "group_analytics", + "dashboards", + "funnels", + "graphs_trends", + "paths", + "subscriptions", + "paths_advanced", + "dashboard_permissioning", + "dashboard_collaboration", + "ingestion_taxonomy", + "correlation_analysis", + "tagging", + "behavioral_cohort_filtering", + "tracked_users", + "data_retention", + "team_members", + "organizations_projects", + "api_access", + "project_based_permissioning", + "social_sso", + "sso_enforcement", + "white_labelling", + "community_support", + "dedicated_support", + "email_support", + "terms_and_conditions", + "security_assessment" + ], + "instance_tag": "none" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.152000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca3-1d5d-7d58-ac71-0a9e143afc1e", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "vhe47zdv0zexeeuk", + "$time": 1697797840.222, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "posthog-3000", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.237000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca3-1d5e-7346-afdf-2400e5e7f7d6", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "96opt7bntz65vkew", + "$time": 1697797840.222, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "enable-prompts", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.237000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca3-1d63-70c3-bc8e-32652a5076c2", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "it0bs3zaxzky8511", + "$time": 1697797840.228, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "notebooks", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.243000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$groupidentify", + "id": "018b4ca3-1db7-7917-8e7e-ce4d6db6aac0", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "b6ktfl60jskki58x", + "$time": 1697797840.312, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$group_type": "instance", + "$group_key": "http://localhost:8000", + "$group_set": { + "site_url": "http://localhost:8000" + }, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.327000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca3-1dcd-712b-befa-52f257d2144b", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "kwzuadx4g5n5ms1d", + "$time": 1697797840.334, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "cs-dashboards", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.350000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca3-1dd4-79b4-9077-540e9c915f51", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "s04xofpsygbioozp", + "$time": 1697797840.344, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "title": "Persons \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.359000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "query completed", + "id": "018b4ca3-1f42-700e-8bef-a6ad468cff87", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "cksjqjsjm4csoovv", + "$time": 1697797840.706, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "query": { + "kind": "HogQLQuery", + "query": "select id, groupArray(pdi.distinct_id) as distinct_ids, properties, is_identified, created_at from persons where pdi.distinct_id={distinct_id} group by id, properties, is_identified, created_at", + "values": { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI" + } + }, + "duration": 516.8999999761581, + "clickhouse_sql": "SELECT persons.id, groupArray(persons__pdi.distinct_id) AS distinct_ids, persons.properties, persons.is_identified, toTimeZone(persons.created_at, %(hogql_val_0)s) FROM (SELECT person.id, person.properties AS properties, person.is_identified AS is_identified, person.created_at AS created_at FROM person WHERE and(equals(person.team_id, 1), ifNull(in(tuple(person.id, person.version), (SELECT person.id, max(person.version) AS version FROM person WHERE equals(person.team_id, 1) GROUP BY person.id HAVING ifNull(equals(argMax(person.is_deleted, person.version), 0), 0))), 0)) SETTINGS optimize_aggregation_in_order=1) AS persons INNER JOIN (SELECT argMax(person_distinct_id2.person_id, person_distinct_id2.version) AS person_id, person_distinct_id2.distinct_id AS distinct_id FROM person_distinct_id2 WHERE equals(person_distinct_id2.team_id, 1) GROUP BY person_distinct_id2.distinct_id HAVING ifNull(equals(argMax(person_distinct_id2.is_deleted, person_distinct_id2.version), 0), 0)) AS persons__pdi ON equals(persons.id, persons__pdi.person_id) WHERE ifNull(equals(persons__pdi.distinct_id, %(hogql_val_1)s), 0) GROUP BY persons.id, persons.properties, persons.is_identified, toTimeZone(persons.created_at, %(hogql_val_2)s) LIMIT 100 SETTINGS readonly=2, max_execution_time=60, allow_experimental_object_type=1", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.721000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca3-1f4d-7bfd-a091-0f8858fcc9ca", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "c1x6pz53d6fb5uqp", + "$time": 1697797840.718, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "debug-react-renders", + "$feature_flag_response": false, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.733000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca3-204e-7df2-a8b4-fe15ee87036d", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "37mvoi5i4r6lfyx3", + "$time": 1697797840.976, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "hogql-insights", + "$feature_flag_response": false, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:40.991000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "person viewed", + "id": "018b4ca3-2139-7a8e-ac11-02e2850ecabb", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "fgp2uq9geh5d7kkq", + "$time": 1697797841.209, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "properties_count": 40, + "has_email": true, + "has_name": false, + "custom_properties_count": 15, + "posthog_properties_count": 25, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:41.224000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "query completed", + "id": "018b4ca3-22e7-7fee-803e-8461e96d4eeb", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "w3rikko1nqif5eb6", + "$time": 1697797841.64, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "query": { + "kind": "SessionsTimelineQuery", + "after": "2021-01-01T18:00:00Z", + "before": "2024-01-01T06:00:00Z", + "personId": "018a92fd-a1c3-0000-4144-fb39888c298e" + }, + "duration": 664.7000000476837, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjNkMzZiZjU3LTFkYjQtNDJlZi1iNzhiLWUyZDNkNGViOWM5NSJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiI1MzE0ZWI2MS1lYTA2LTQyOGQtYWEzZi0zMDA4OWJjZmUxYjgifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImUwMjE1NDU5LWY0YTgtNGJjNy04NDhmLTYxODE1NzY1NzlmNyJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:41.655000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$feature_flag_called", + "id": "018b4ca3-2350-7671-8383-8c248f826729", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "h2xh5dfq47fd03xz", + "$time": 1697797841.745, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "$feature_flag": "product-specific-onboarding", + "$feature_flag_response": true, + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:41.760000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4ca3-2368-78f4-88db-9fdc90e949de", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "m2opmkybj5tuw159", + "$time": 1697797841.769, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "title": "test@posthog.com \u2022 Persons \u2022 PostHog", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:41.784000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "notebook content changed", + "id": "018b4ca3-236a-78d6-ba7b-155173c88abe", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "3tkk1xg4kr4es46n", + "$time": 1697797841.77, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T10:30:43.133000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T10:30:41.785000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$opt_in", + "id": "018b4cc2-9079-7685-b127-207ee22b84d4", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "kegpygvidsjwpa52", + "$time": 1697799901.306, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4cc2-9078-7092-8d1a-e6d2368f35a3", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:01.307000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.309000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageview", + "id": "018b4cc2-907c-7bc8-913f-5b1887950b73", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$host": "localhost:8000", + "$pathname": "/", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "l26gbkzemq3muzti", + "$time": 1697799901.308, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "title": "PostHog", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4cc2-9078-7092-8d1a-e6d2368f35a3", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/", + "$pathname": "/", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/", + "$initial_pathname": "/", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:01.308000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:01.312000+00:00", + "uuid": null + }, + { + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "elements": [], + "elements_chain": null, + "event": "$pageleave", + "id": "018b4cc3-527c-7bc2-b270-1e09559a1460", + "person": null, + "properties": { + "$os": "Mac OS X", + "$os_version": "10.15.7", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$host": "localhost:8000", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$browser_language": "en-GB", + "$screen_height": 982, + "$screen_width": 1512, + "$viewport_height": 859, + "$viewport_width": 1512, + "$lib": "web", + "$lib_version": "1.84.0", + "$insert_id": "ubvpv3ao6iaj9wk8", + "$time": 1697799950.972, + "distinct_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$device_id": "018a92fd-7b25-7770-a050-577e94fd148c", + "$console_log_recording_enabled_server_side": true, + "$session_recording_recorder_version_server_side": "v2", + "$autocapture_disabled_server_side": false, + "$active_feature_flags": [ + "signup-page-4.0", + "cmd-k-search", + "posthog-3000", + "funnels-cue-opt-out-7301", + "retention-breakdown", + "smoothing-interval", + "billing-limit", + "kafka-inspector", + "historical-exports-v2", + "person-on-events-enabled", + "region-select", + "ingestion-warnings-enabled", + "session-reset-on-load", + "recordings-on-feature-flags", + "auto-rollback-feature-flags", + "onboarding-v2-demo", + "feature-flag-rollout-ux", + "role-based-access", + "query_running_time", + "query-timings", + "recording-debugging", + "enable-prompts", + "feedback-scene", + "early-access-feature", + "early-access-feature-site-button", + "hedgehog-mode-debug", + "auto-redirect", + "session-recording-blob-replay", + "surveys", + "generic-signup-benefits", + "surveys-positions", + "web-analytics", + "high-frequency-batch-exports", + "exception-autocapture", + "data-warehouse", + "data-warehouse-views", + "ff-dashboard-templates", + "show-product-intro-existing-products", + "artificial-hog", + "cs-dashboards", + "product-specific-onboarding", + "redirect-signups-to-instance", + "apps-and-exports-ui", + "survey-nps-results", + "session-recording-allow-v1-snapshots", + "session-replay-cors-proxy", + "webhooks-denylist", + "surveys-site-app-deprecation", + "surveys-multiple-questions", + "surveys-results-visualizations", + "console-recording-search", + "persons-hogql-query", + "notebooks" + ], + "$feature/file-previews": false, + "$feature/signup-page-4.0": "control", + "$feature/hogql-insights": false, + "$feature/cmd-k-search": true, + "$feature/posthog-3000": true, + "$feature/funnels-cue-opt-out-7301": true, + "$feature/retention-breakdown": true, + "$feature/smoothing-interval": true, + "$feature/billing-limit": true, + "$feature/kafka-inspector": true, + "$feature/historical-exports-v2": true, + "$feature/person-on-events-enabled": true, + "$feature/region-select": true, + "$feature/ingestion-warnings-enabled": true, + "$feature/session-reset-on-load": true, + "$feature/recordings-on-feature-flags": true, + "$feature/auto-rollback-feature-flags": true, + "$feature/onboarding-v2-demo": true, + "$feature/feature-flag-rollout-ux": true, + "$feature/role-based-access": true, + "$feature/query_running_time": true, + "$feature/query-timings": true, + "$feature/recording-debugging": true, + "$feature/enable-prompts": true, + "$feature/feedback-scene": true, + "$feature/early-access-feature": true, + "$feature/early-access-feature-site-button": true, + "$feature/hedgehog-mode-debug": true, + "$feature/auto-redirect": true, + "$feature/session-recording-blob-replay": true, + "$feature/surveys": true, + "$feature/generic-signup-benefits": true, + "$feature/surveys-positions": true, + "$feature/web-analytics": true, + "$feature/high-frequency-batch-exports": true, + "$feature/exception-autocapture": true, + "$feature/data-warehouse": true, + "$feature/data-warehouse-views": true, + "$feature/ff-dashboard-templates": true, + "$feature/show-product-intro-existing-products": true, + "$feature/artificial-hog": true, + "$feature/cs-dashboards": true, + "$feature/product-specific-onboarding": true, + "$feature/redirect-signups-to-instance": true, + "$feature/apps-and-exports-ui": true, + "$feature/survey-nps-results": true, + "$feature/session-recording-allow-v1-snapshots": true, + "$feature/session-replay-cors-proxy": true, + "$feature/webhooks-denylist": true, + "$feature/surveys-site-app-deprecation": true, + "$feature/surveys-multiple-questions": true, + "$feature/surveys-results-visualizations": true, + "$feature/console-recording-search": true, + "$feature/persons-hogql-query": true, + "$feature/notebooks": true, + "$feature_flag_payloads": {}, + "realm": "hosted-clickhouse", + "email_service_available": false, + "slack_service_available": false, + "$user_id": "krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "is_demo_project": false, + "$groups": { + "project": "018a92f8-b602-0000-75de-4b9073693531", + "organization": "018a92f8-afff-0000-efec-ca77de39e384", + "customer": "cus_OdSgxxWtHOtq9g", + "instance": "http://localhost:8000" + }, + "has_billing_plan": true, + "customer_deactivated": false, + "current_total_amount_usd": "0.00", + "percentage_usage.product_analytics": 0, + "current_amount_usd.product_analytics": "0.00", + "unit_amount_usd.product_analytics": null, + "usage_limit.product_analytics": null, + "current_usage.product_analytics": 3729, + "projected_usage.product_analytics": 0, + "free_allocation.product_analytics": 0, + "percentage_usage.session_replay": 0, + "current_amount_usd.session_replay": "0.00", + "unit_amount_usd.session_replay": null, + "usage_limit.session_replay": null, + "current_usage.session_replay": 254, + "projected_usage.session_replay": 0, + "free_allocation.session_replay": 0, + "percentage_usage.feature_flags": 0, + "current_amount_usd.feature_flags": "0.00", + "unit_amount_usd.feature_flags": null, + "usage_limit.feature_flags": null, + "current_usage.feature_flags": 0, + "projected_usage.feature_flags": 0, + "free_allocation.feature_flags": 0, + "percentage_usage.integrations": 0, + "current_amount_usd.integrations": null, + "unit_amount_usd.integrations": null, + "usage_limit.integrations": 0, + "current_usage.integrations": 0, + "projected_usage.integrations": 0, + "free_allocation.integrations": 0, + "percentage_usage.platform_and_support": 0, + "current_amount_usd.platform_and_support": null, + "unit_amount_usd.platform_and_support": null, + "usage_limit.platform_and_support": 0, + "current_usage.platform_and_support": 0, + "projected_usage.platform_and_support": 0, + "free_allocation.platform_and_support": 0, + "billing_period_start": "2023-10-14T09:22:33.000Z", + "billing_period_end": "2023-11-14T09:22:33.000Z", + "$referrer": "$direct", + "$referring_domain": "$direct", + "token": "phc_OWGI2wKbfi7rWDZT9wkl8uGcfe0wOGCvflLEZSMiaT0", + "$session_id": "018b4ca3-1d07-7195-8202-c8a103a9325a", + "$window_id": "018b4ca3-1d07-7195-8202-c8a2b00ad68a", + "$ip": "127.0.0.1", + "$set": { + "$os": "Mac OS X", + "$browser": "Chrome", + "$device_type": "Desktop", + "$current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$browser_version": 117, + "$referrer": "$direct", + "$referring_domain": "$direct" + }, + "$set_once": { + "$initial_os": "Mac OS X", + "$initial_browser": "Chrome", + "$initial_device_type": "Desktop", + "$initial_current_url": "http://localhost:8000/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI#activeTab=feed&state=eyJ0eXBlIjoiZG9jIiwiY29udGVudCI6W3sidHlwZSI6ImhlYWRpbmciLCJhdHRycyI6eyJsZXZlbCI6MX0sImNvbnRlbnQiOlt7InR5cGUiOiJ0ZXh0IiwidGV4dCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkifV19LHsidHlwZSI6InBoLXBlcnNvbi1mZWVkIiwiYXR0cnMiOnsiaGVpZ2h0IjpudWxsLCJ0aXRsZSI6bnVsbCwibm9kZUlkIjoiNmQ0ODUwNjYtZWM5OS00ODNkLThiOTgtNGQ4YTJkYzljYzRiIiwiaWQiOiJrclJmZ29wc1V5MVR3TlUxeWhTRExxTkRUZDZONXRNWnJIbG04bkxKSURJIiwiX19pbml0IjpudWxsLCJjaGlsZHJlbiI6W3sidHlwZSI6InBoLXBlcnNvbiIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6IjE0NDk2Y2ExLWUyNTUtNDlkMS1hM2IzLWU4ZjA1NzhhYjQ5YiJ9fSx7InR5cGUiOiJwaC1tYXAiLCJhdHRycyI6eyJpZCI6ImtyUmZnb3BzVXkxVHdOVTF5aFNETHFORFRkNk41dE1ackhsbThuTEpJREkiLCJub2RlSWQiOiJmMzgxYmFkOC1kMTNkLTQyOGItODYyNC03YTFkNTBhODBkMjMifX0seyJ0eXBlIjoicGgtcHJvcGVydGllcyIsImF0dHJzIjp7ImlkIjoia3JSZmdvcHNVeTFUd05VMXloU0RMcU5EVGQ2TjV0TVpySGxtOG5MSklESSIsIm5vZGVJZCI6ImE5Y2ZlOTlhLTRiZTktNDU1YS04OWMyLTViZGUyMGY2MWQwMiJ9fV19fV19", + "$initial_pathname": "/person/krRfgopsUy1TwNU1yhSDLqNDTd6N5tMZrHlm8nLJIDI", + "$initial_browser_version": 117, + "$initial_referrer": "$direct", + "$initial_referring_domain": "$direct" + }, + "$sent_at": "2023-10-20T11:05:50.975000+00:00", + "$geoip_city_name": "Sydney", + "$geoip_country_name": "Australia", + "$geoip_country_code": "AU", + "$geoip_continent_name": "Oceania", + "$geoip_continent_code": "OC", + "$geoip_postal_code": "2000", + "$geoip_latitude": -33.8715, + "$geoip_longitude": 151.2006, + "$geoip_time_zone": "Australia/Sydney", + "$geoip_subdivision_1_code": "NSW", + "$geoip_subdivision_1_name": "New South Wales", + "$plugins_succeeded": ["GeoIP (1)"], + "$plugins_failed": [], + "$plugins_deferred": [], + "$group_3": "018a92f8-b602-0000-75de-4b9073693531", + "$group_2": "018a92f8-afff-0000-efec-ca77de39e384", + "$group_4": "cus_OdSgxxWtHOtq9g", + "$group_1": "http://localhost:8000" + }, + "timestamp": "2023-10-20T11:05:50.993000+00:00", + "uuid": null + } + ], + "recording_duration_s": 2114.0, + "sessionId": "018b4ca3-1d07-7195-8202-c8a103a9325a" + } + ], + "timings": [ + { + "k": "./build_ast", + "t": 0.023964583000633866 + }, + { + "k": "./query", + "t": 4.433299181982875e-5 + }, + { + "k": "./replace_placeholders", + "t": 0.00022916699526831508 + }, + { + "k": "./max_limit", + "t": 4.520895890891552e-5 + }, + { + "k": "./hogql/prepare_ast/clone", + "t": 0.0003998330212198198 + }, + { + "k": "./hogql/prepare_ast/create_hogql_database", + "t": 0.026486458024010062 + }, + { + "k": "./hogql/prepare_ast/resolve_types", + "t": 0.0021655409946106374 + }, + { + "k": "./hogql/prepare_ast", + "t": 0.02919254096923396 + }, + { + "k": "./hogql/print_ast/printer", + "t": 0.001116375089623034 + }, + { + "k": "./hogql/print_ast", + "t": 0.0012727080029435456 + }, + { + "k": "./hogql", + "t": 0.03451150003820658 + }, + { + "k": "./print_ast/create_hogql_database", + "t": 0.020703041984234005 + }, + { + "k": "./print_ast/resolve_types", + "t": 0.0019762919982895255 + }, + { + "k": "./print_ast/resolve_property_types", + "t": 0.0009936250280588865 + }, + { + "k": "./print_ast/resolve_lazy_tables", + "t": 0.001264624996110797 + }, + { + "k": "./print_ast/printer", + "t": 0.0024609589600004256 + }, + { + "k": "./print_ast", + "t": 0.027551917009986937 + }, + { + "k": "./clickhouse_execute", + "t": 0.65883087500697 + }, + { + "k": ".", + "t": 0.7931497080135159 + } + ] +} diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/notebookNodePersonFeedLogic.ts b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/notebookNodePersonFeedLogic.ts new file mode 100644 index 0000000000000..1768b80caf50e --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodePersonFeed/notebookNodePersonFeedLogic.ts @@ -0,0 +1,45 @@ +import { kea, key, path, props, afterMount } from 'kea' +import { loaders } from 'kea-loaders' + +// import { query } from '~/queries/query' +// import { +// // NodeKind, +// // SessionsTimelineQuery, +// SessionsTimelineQueryResponse, +// } from '~/queries/schema' + +import mockSessionsTimelineQueryResponse from './mockSessionsTimelineQueryResponse.json' + +import type { notebookNodePersonFeedLogicType } from './notebookNodePersonFeedLogicType' + +export type NotebookNodePersonFeedLogicProps = { + personId: string +} + +export const notebookNodePersonFeedLogic = kea([ + props({} as NotebookNodePersonFeedLogicProps), + path((key) => ['scenes', 'notebooks', 'Notebook', 'Nodes', 'notebookNodePersonFeedLogic', key]), + key(({ personId }) => personId), + + loaders(() => ({ + sessions: [ + // null as SessionsTimelineQueryResponse['results'] | null, + null as any | null, + { + loadSessionsTimeline: async () => { + // const result = await query({ + // kind: NodeKind.SessionsTimelineQuery, + // after: '2021-01-01T18:00:00Z', + // before: '2024-01-01T06:00:00Z', + // personId: props.personId, + // }) + const result = mockSessionsTimelineQueryResponse + return result.results + }, + }, + ], + })), + afterMount(({ actions }) => { + actions.loadSessionsTimeline() + }), +]) diff --git a/frontend/src/scenes/notebooks/Nodes/NotebookNodeProperties.tsx b/frontend/src/scenes/notebooks/Nodes/NotebookNodeProperties.tsx new file mode 100644 index 0000000000000..e6e0b63f70713 --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/NotebookNodeProperties.tsx @@ -0,0 +1,66 @@ +import { NotebookNodeType, PropertyDefinitionType } from '~/types' +import { createPostHogWidgetNode } from 'scenes/notebooks/Nodes/NodeWrapper' +import { LemonLabel, LemonSkeleton } from '@posthog/lemon-ui' +import { PropertyKeyInfo } from 'lib/components/PropertyKeyInfo' +import { PropertiesTable } from 'lib/components/PropertiesTable' +import { useValues } from 'kea' +import { personLogic } from 'scenes/persons/personLogic' +import { NotebookNodeProps } from '../Notebook/utils' +import { NotFound } from 'lib/components/NotFound' +import { notebookNodeLogic } from './notebookNodeLogic' + +const Component = ({ attributes }: NotebookNodeProps): JSX.Element | null => { + const { id } = attributes + + const { expanded } = useValues(notebookNodeLogic) + + const logic = personLogic({ id }) + const { person, personLoading } = useValues(logic) + + if (personLoading) { + return + } else if (!person) { + return + } + + const numProperties = Object.keys(person.properties).length + + if (!expanded) { + return null + } + + return ( +
+ {Object.entries(person.properties).map(([key, value], index) => { + const isLast = index === numProperties - 1 + + return ( +
+ + + +
+ +
+
+ ) + })} +
+ ) +} + +type NotebookNodePropertiesAttributes = { + id: string +} + +export const NotebookNodeProperties = createPostHogWidgetNode({ + nodeType: NotebookNodeType.Properties, + titlePlaceholder: 'Properties', + Component, + resizeable: false, + expandable: true, + startExpanded: true, + attributes: { + id: {}, + }, +}) diff --git a/frontend/src/scenes/notebooks/Nodes/components/NotebookNodeEmptyState.tsx b/frontend/src/scenes/notebooks/Nodes/components/NotebookNodeEmptyState.tsx new file mode 100644 index 0000000000000..8dd8c292407f3 --- /dev/null +++ b/frontend/src/scenes/notebooks/Nodes/components/NotebookNodeEmptyState.tsx @@ -0,0 +1,11 @@ +type NotebookNodeEmptyStateProps = { + message: string +} + +export function NotebookNodeEmptyState({ message }: NotebookNodeEmptyStateProps): JSX.Element { + return ( +
+ {message} +
+ ) +} diff --git a/frontend/src/scenes/notebooks/Notebook/Editor.tsx b/frontend/src/scenes/notebooks/Notebook/Editor.tsx index 5c43d377d1674..feaffd333ae78 100644 --- a/frontend/src/scenes/notebooks/Notebook/Editor.tsx +++ b/frontend/src/scenes/notebooks/Notebook/Editor.tsx @@ -8,6 +8,8 @@ import { FloatingMenu } from '@tiptap/extension-floating-menu' import StarterKit from '@tiptap/starter-kit' import ExtensionPlaceholder from '@tiptap/extension-placeholder' import ExtensionDocument from '@tiptap/extension-document' +import TaskItem from '@tiptap/extension-task-item' +import TaskList from '@tiptap/extension-task-list' import { NotebookNodeFlagCodeExample } from '../Nodes/NotebookNodeFlagCodeExample' import { NotebookNodeFlag } from '../Nodes/NotebookNodeFlag' @@ -36,6 +38,9 @@ import { notebookLogic } from './notebookLogic' import { sampleOne } from 'lib/utils' import { NotebookNodeGroup } from '../Nodes/NotebookNodeGroup' import { NotebookNodeCohort } from '../Nodes/NotebookNodeCohort' +import { NotebookNodePersonFeed } from '../Nodes/NotebookNodePersonFeed/NotebookNodePersonFeed' +import { NotebookNodeProperties } from '../Nodes/NotebookNodeProperties' +import { NotebookNodeMap } from '../Nodes/NotebookNodeMap' const CustomDocument = ExtensionDocument.extend({ content: 'heading block*', @@ -94,6 +99,10 @@ export function Editor(): JSX.Element { } }, }), + TaskList, + TaskItem.configure({ + nested: true, + }), NotebookMarkLink, NotebookNodeBacklink, NotebookNodeQuery, @@ -109,9 +118,12 @@ export function Editor(): JSX.Element { NotebookNodeEarlyAccessFeature, NotebookNodeSurvey, NotebookNodeImage, + NotebookNodeProperties, SlashCommandsExtension, BacklinkCommandsExtension, NodeGapInsertionExtension, + NotebookNodePersonFeed, + NotebookNodeMap, ], editorProps: { handleDrop: (view, event, _slice, moved) => { diff --git a/frontend/src/scenes/notebooks/Notebook/InlineMenu.tsx b/frontend/src/scenes/notebooks/Notebook/InlineMenu.tsx index 275b4e3febde0..8df8854a0843e 100644 --- a/frontend/src/scenes/notebooks/Notebook/InlineMenu.tsx +++ b/frontend/src/scenes/notebooks/Notebook/InlineMenu.tsx @@ -3,10 +3,12 @@ import { Editor, isTextSelection } from '@tiptap/core' import { BubbleMenu } from '@tiptap/react' import { IconBold, IconDelete, IconItalic, IconLink, IconOpenInNew } from 'lib/lemon-ui/icons' import { isURL } from 'lib/utils' +import { useRef } from 'react' import NotebookIconHeading from './NotebookIconHeading' export const InlineMenu = ({ editor }: { editor: Editor }): JSX.Element => { const { href, target } = editor.getAttributes('link') + const menuRef = useRef(null) const setLink = (href: string): void => { editor.commands.setMark('link', { href: href }) @@ -19,25 +21,29 @@ export const InlineMenu = ({ editor }: { editor: Editor }): JSX.Element => { return ( { - const hasEditorFocus = view.hasFocus() + shouldShow={({ editor: { isEditable }, view, state, from, to }) => { + const isChildOfMenu = menuRef.current?.contains(document.activeElement) + const focused = view.hasFocus() || isChildOfMenu const isTextBlock = isTextSelection(state.selection) - if (!hasEditorFocus || !editor.isEditable || !isTextBlock) { + if (!focused || !isEditable || !isTextBlock) { return false } return state.doc.textBetween(from, to).length > 0 }} > -
+
{editor.isActive('link') ? ( <> diff --git a/frontend/src/scenes/notebooks/Notebook/Notebook.scss b/frontend/src/scenes/notebooks/Notebook/Notebook.scss index a3b6159c07566..3adb654c29b47 100644 --- a/frontend/src/scenes/notebooks/Notebook/Notebook.scss +++ b/frontend/src/scenes/notebooks/Notebook/Notebook.scss @@ -37,12 +37,40 @@ height: 0; } - > ul { + > ol { + list-style-type: decimal; + } + + ul { list-style-type: disc; } - > ol { - list-style-type: decimal; + > ul[data-type='taskList'] { + list-style-type: none; + padding-left: 0px; + + li { + display: flex; + + > label { + flex: 0 0 auto; + margin-right: 0.5rem; + user-select: none; + } + + > div { + flex: 1 1 auto; + } + + ul li, + ol li { + display: list-item; + } + + ul[data-type='taskList'] > li { + display: flex; + } + } } > ul, diff --git a/frontend/src/scenes/notebooks/Notebook/utils.ts b/frontend/src/scenes/notebooks/Notebook/utils.ts index b21ff74c82db7..edd9242b948e8 100644 --- a/frontend/src/scenes/notebooks/Notebook/utils.ts +++ b/frontend/src/scenes/notebooks/Notebook/utils.ts @@ -124,6 +124,9 @@ export const textContent = (node: any): string => { 'ph-survey': customOrTitleSerializer, 'ph-group': customOrTitleSerializer, 'ph-cohort': customOrTitleSerializer, + 'ph-person-feed': customOrTitleSerializer, + 'ph-properties': customOrTitleSerializer, + 'ph-map': customOrTitleSerializer, } return getText(node, { diff --git a/frontend/src/scenes/notebooks/NotebooksTable/ContainsTypeFilter.tsx b/frontend/src/scenes/notebooks/NotebooksTable/ContainsTypeFilter.tsx index dc0c082733816..258e2cc92d552 100644 --- a/frontend/src/scenes/notebooks/NotebooksTable/ContainsTypeFilter.tsx +++ b/frontend/src/scenes/notebooks/NotebooksTable/ContainsTypeFilter.tsx @@ -2,7 +2,10 @@ import { NotebookNodeType } from '~/types' import { LemonSelectMultiple } from 'lib/lemon-ui/LemonSelectMultiple' import { NotebooksListFilters } from 'scenes/notebooks/NotebooksTable/notebooksTableLogic' -export const fromNodeTypeToLabel: Omit, NotebookNodeType.Backlink> = { +export const fromNodeTypeToLabel: Omit< + Record, + NotebookNodeType.Backlink | NotebookNodeType.PersonFeed | NotebookNodeType.Properties | NotebookNodeType.Map +> = { [NotebookNodeType.FeatureFlag]: 'Feature flags', [NotebookNodeType.FeatureFlagCodeExample]: 'Feature flag Code Examples', [NotebookNodeType.Experiment]: 'Experiments', diff --git a/frontend/src/scenes/persons/PersonFeedCanvas.tsx b/frontend/src/scenes/persons/PersonFeedCanvas.tsx index d2de1646a62d5..f8fef880bca53 100644 --- a/frontend/src/scenes/persons/PersonFeedCanvas.tsx +++ b/frontend/src/scenes/persons/PersonFeedCanvas.tsx @@ -24,7 +24,7 @@ const PersonFeedCanvas = ({ person }: PersonFeedCanvasProps): JSX.Element => { attrs: { height: null, title: null, - nodeId: '6d485066-ec99-483d-8b98-4d8a2dc9cc4b', + nodeId: uuid(), id: personId, __init: null, children: [ diff --git a/frontend/src/scenes/persons/PersonScene.tsx b/frontend/src/scenes/persons/PersonScene.tsx index 2a7a277deda10..bce2a2b72d130 100644 --- a/frontend/src/scenes/persons/PersonScene.tsx +++ b/frontend/src/scenes/persons/PersonScene.tsx @@ -34,6 +34,7 @@ import { LemonTabs } from 'lib/lemon-ui/LemonTabs' import { PersonDashboard } from './PersonDashboard' import { NotebookSelectButton } from 'scenes/notebooks/NotebookSelectButton/NotebookSelectButton' import { SessionRecordingsPlaylist } from 'scenes/session-recordings/playlist/SessionRecordingsPlaylist' +import PersonFeedCanvas from './PersonFeedCanvas' export const scene: SceneExport = { component: PersonScene, @@ -109,6 +110,7 @@ function PersonCaption({ person }: { person: PersonType }): JSX.Element { export function PersonScene(): JSX.Element | null { const { showCustomerSuccessDashboards, + feedEnabled, person, personLoading, currentTab, @@ -185,6 +187,13 @@ export function PersonScene(): JSX.Element | null { }} data-attr="persons-tabs" tabs={[ + feedEnabled + ? { + key: PersonsTabType.FEED, + label: Feed, + content: , + } + : false, { key: PersonsTabType.PROPERTIES, label: Properties, diff --git a/frontend/src/scenes/persons/RelatedFeatureFlags.tsx b/frontend/src/scenes/persons/RelatedFeatureFlags.tsx index 08a3d1e23dc6f..ffef288d633f5 100644 --- a/frontend/src/scenes/persons/RelatedFeatureFlags.tsx +++ b/frontend/src/scenes/persons/RelatedFeatureFlags.tsx @@ -117,6 +117,16 @@ export function RelatedFeatureFlags({ distinctId, groups }: Props): JSX.Element }, }, ] + + const options = [ + { label: 'All types', value: 'all' }, + { + label: FeatureFlagReleaseType.ReleaseToggle, + value: FeatureFlagReleaseType.ReleaseToggle, + }, + { label: FeatureFlagReleaseType.Variants, value: FeatureFlagReleaseType.Variants }, + ] + return ( <>
@@ -131,14 +141,7 @@ export function RelatedFeatureFlags({ distinctId, groups }: Props): JSX.Element Type { if (type) { if (type === 'all') { diff --git a/frontend/src/scenes/persons/personsLogic.tsx b/frontend/src/scenes/persons/personsLogic.tsx index 005924ec56924..eb1c15fd49a11 100644 --- a/frontend/src/scenes/persons/personsLogic.tsx +++ b/frontend/src/scenes/persons/personsLogic.tsx @@ -136,11 +136,10 @@ export const personsLogic = kea({ : 'https://posthog.com/docs/api/persons', ], cohortId: [() => [(_, props) => props.cohort], (cohort: PersonsLogicProps['cohort']) => cohort], - currentTab: [ - (s) => [s.activeTab], - (activeTab) => { - return activeTab || PersonsTabType.PROPERTIES - }, + currentTab: [(s) => [s.activeTab, s.defaultTab], (activeTab, defaultTab) => activeTab || defaultTab], + defaultTab: [ + (s) => [s.feedEnabled], + (feedEnabled) => (feedEnabled ? PersonsTabType.FEED : PersonsTabType.PROPERTIES), ], breadcrumbs: [ (s) => [s.person, router.selectors.location], @@ -179,6 +178,7 @@ export const personsLogic = kea({ (s) => [s.featureFlags], (featureFlags) => featureFlags[FEATURE_FLAGS.CS_DASHBOARDS], ], + feedEnabled: [(s) => [s.featureFlags], (featureFlags) => !!featureFlags[FEATURE_FLAGS.PERSON_FEED_CANVAS]], }), listeners: ({ actions, values }) => ({ editProperty: async ({ key, newValue }) => { @@ -375,7 +375,7 @@ export const personsLogic = kea({ } if (!activeTab) { - actions.setActiveTab(PersonsTabType.PROPERTIES) + actions.setActiveTab(values.defaultTab) } if (rawPersonDistinctId) { @@ -397,7 +397,7 @@ export const personsLogic = kea({ } if (!activeTab) { - actions.setActiveTab(PersonsTabType.PROPERTIES) + actions.setActiveTab(values.defaultTab) } if (rawPersonUUID) { diff --git a/frontend/src/scenes/session-recordings/filters/SessionRecordingsFilters.tsx b/frontend/src/scenes/session-recordings/filters/SessionRecordingsFilters.tsx index 949326b351df8..bc1e108bf7c19 100644 --- a/frontend/src/scenes/session-recordings/filters/SessionRecordingsFilters.tsx +++ b/frontend/src/scenes/session-recordings/filters/SessionRecordingsFilters.tsx @@ -101,8 +101,9 @@ export function SessionRecordingsFilters({ size="small" onClick={() => setShowAdvancedFilters(!showAdvancedFilters)} disabledReason={ - hasAdvancedFilters && - 'You are only allowed person filters and a single pageview event to switch back to simple filters' + hasAdvancedFilters + ? 'You are only allowed person filters and a single pageview event (filtered by current url) to switch back to simple filters' + : undefined } data-attr={`session-recordings-show-${showAdvancedFilters ? 'simple' : 'advanced'}-filters`} > diff --git a/frontend/src/scenes/session-recordings/playlist/sessionRecordingsPlaylistLogic.ts b/frontend/src/scenes/session-recordings/playlist/sessionRecordingsPlaylistLogic.ts index 2c588d43ccf0a..b07d55e3f9d10 100644 --- a/frontend/src/scenes/session-recordings/playlist/sessionRecordingsPlaylistLogic.ts +++ b/frontend/src/scenes/session-recordings/playlist/sessionRecordingsPlaylistLogic.ts @@ -79,30 +79,64 @@ export const getDefaultFilters = (personUUID?: PersonUUID): RecordingFilters => return personUUID ? DEFAULT_PERSON_RECORDING_FILTERS : DEFAULT_RECORDING_FILTERS } +function isPageViewFilter(filter: Record): boolean { + return filter.name === '$pageview' +} +function isCurrentURLPageViewFilter(eventsFilter: Record): boolean { + const hasSingleProperty = Array.isArray(eventsFilter.properties) && eventsFilter.properties?.length === 1 + const isCurrentURLProperty = hasSingleProperty && eventsFilter.properties[0].key === '$current_url' + return isPageViewFilter(eventsFilter) && isCurrentURLProperty +} + +// checks are stored against filter keys so that the type system enforces adding a check when we add new filters +const advancedFilterChecks: Record< + keyof RecordingFilters, + (filters: RecordingFilters, defaultFilters: RecordingFilters) => boolean +> = { + actions: (filters) => (filters.actions ? filters.actions.length > 0 : false), + events: function (filters: RecordingFilters): boolean { + const eventsFilters = filters.events || [] + // simple filters allow a single $pageview event filter with $current_url as the selected property + // anything else is advanced + return ( + eventsFilters.length > 1 || + (!!eventsFilters[0] && + (!isPageViewFilter(eventsFilters[0]) || !isCurrentURLPageViewFilter(eventsFilters[0]))) + ) + }, + properties: function (): boolean { + // TODO is this right? should we ever care about properties for choosing between advanced and simple? + return false + }, + date_from: (filters, defaultFilters) => filters.date_from != defaultFilters.date_from, + date_to: (filters, defaultFilters) => filters.date_to != defaultFilters.date_to, + session_recording_duration: (filters, defaultFilters) => + !equal(filters.session_recording_duration, defaultFilters.session_recording_duration), + duration_type_filter: (filters, defaultFilters) => + filters.duration_type_filter !== defaultFilters.duration_type_filter, + console_search_query: (filters) => + filters.console_search_query ? filters.console_search_query.trim().length > 0 : false, + console_logs: (filters) => (filters.console_logs ? filters.console_logs.length > 0 : false), + filter_test_accounts: (filters) => filters.filter_test_accounts ?? false, +} + export const addedAdvancedFilters = ( filters: RecordingFilters | undefined, defaultFilters: RecordingFilters ): boolean => { - if (!filters) { + // if there are no filters or if some filters are not present then the page is still booting up + if (!filters || filters.session_recording_duration === undefined || filters.date_from === undefined) { return false } - const hasActions = filters.actions ? filters.actions.length > 0 : false - const hasChangedDateFrom = filters.date_from != defaultFilters.date_from - const hasChangedDateTo = filters.date_to != defaultFilters.date_to - const hasConsoleLogsFilters = filters.console_logs ? filters.console_logs.length > 0 : false - const hasChangedDuration = !equal(filters.session_recording_duration, defaultFilters.session_recording_duration) - const eventsFilters = filters.events || [] - const hasAdvancedEvents = eventsFilters.length > 1 || (!!eventsFilters[0] && eventsFilters[0].name != '$pageview') - - return ( - hasActions || - hasAdvancedEvents || - hasChangedDuration || - hasChangedDateFrom || - hasChangedDateTo || - hasConsoleLogsFilters - ) + // keeps results with the keys for printing when debugging + const checkResults = Object.keys(advancedFilterChecks).map((key) => ({ + key, + result: advancedFilterChecks[key](filters, defaultFilters), + })) + + // if any check is true, then this is an advanced filter + return checkResults.some((checkResult) => checkResult.result) } export const defaultPageviewPropertyEntityFilter = ( @@ -348,8 +382,14 @@ export const sessionRecordingsPlaylistLogic = kea - addedAdvancedFilters(filters, getDefaultFilters(props.personUUID)) ? true : showingAdvancedFilters, + persist: true, + }, + { + setFilters: (showingAdvancedFilters, { filters }) => { + return addedAdvancedFilters(filters, getDefaultFilters(props.personUUID)) + ? true + : showingAdvancedFilters + }, setShowAdvancedFilters: (_, { showAdvancedFilters }) => showAdvancedFilters, }, ], diff --git a/frontend/src/scenes/surveys/SurveyAppearance.tsx b/frontend/src/scenes/surveys/SurveyAppearance.tsx index b964554d61360..5f90af5447c65 100644 --- a/frontend/src/scenes/surveys/SurveyAppearance.tsx +++ b/frontend/src/scenes/surveys/SurveyAppearance.tsx @@ -490,8 +490,10 @@ export function SurveyRatingAppearance({
)} -
{question}
- {description &&
{description}
} +
+ {description && ( +
+ )}
{ratingSurveyQuestion.display === 'emoji' && ( @@ -588,8 +590,10 @@ export function SurveyMultipleChoiceAppearance({
)} -
{question}
- {description &&
{description}
} +
+ {description && ( +
+ )}
{(multipleChoiceQuestion.choices || []).map((choice, idx) => (
diff --git a/frontend/src/scenes/trends/trendsDataLogic.ts b/frontend/src/scenes/trends/trendsDataLogic.ts index 06e95485b8e80..5ee67ec453f4e 100644 --- a/frontend/src/scenes/trends/trendsDataLogic.ts +++ b/frontend/src/scenes/trends/trendsDataLogic.ts @@ -143,7 +143,7 @@ export const trendsDataLogic = kea([ actions.setInsightData({ ...values.insightData, - result: [...values.insightData?.result, ...(response.result ? response.result : [])], + result: [...values.insightData.result, ...(response.result ? response.result : [])], next: response.next, }) diff --git a/frontend/src/types.ts b/frontend/src/types.ts index a8b702e55b296..c59ab2d0a9f50 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -935,6 +935,7 @@ export enum StepOrderValue { } export enum PersonsTabType { + FEED = 'feed', EVENTS = 'events', SESSION_RECORDINGS = 'sessionRecordings', PROPERTIES = 'properties', @@ -3080,6 +3081,9 @@ export enum NotebookNodeType { Backlink = 'ph-backlink', ReplayTimestamp = 'ph-replay-timestamp', Image = 'ph-image', + PersonFeed = 'ph-person-feed', + Properties = 'ph-properties', + Map = 'ph-map', } export type NotebookNodeResource = { diff --git a/package.json b/package.json index 3ffa52cc67565..583620eca93e3 100644 --- a/package.json +++ b/package.json @@ -84,6 +84,8 @@ "@tiptap/extension-document": "^2.1.0-rc.12", "@tiptap/extension-floating-menu": "^2.1.0-rc.12", "@tiptap/extension-placeholder": "^2.1.0-rc.12", + "@tiptap/extension-task-item": "^2.1.11", + "@tiptap/extension-task-list": "^2.1.11", "@tiptap/pm": "^2.1.0-rc.12", "@tiptap/react": "^2.1.0-rc.12", "@tiptap/starter-kit": "^2.1.0-rc.12", @@ -128,10 +130,11 @@ "kea-test-utils": "^0.2.4", "kea-waitfor": "^0.2.1", "kea-window-values": "^3.0.0", + "maplibre-gl": "^3.5.1", "md5": "^2.3.0", "monaco-editor": "^0.39.0", "papaparse": "^5.4.1", - "posthog-js": "1.85.3", + "posthog-js": "1.85.4", "posthog-js-lite": "2.0.0-alpha5", "prettier": "^2.8.8", "prop-types": "^15.7.2", @@ -223,12 +226,11 @@ "@types/react-resizable": "^3.0.4", "@types/react-syntax-highlighter": "^15.5.7", "@types/react-textfit": "^1.1.0", - "@types/react-transition-group": "^4.4.4", "@types/react-virtualized": "^9.21.14", "@types/testing-library__jest-dom": "^5.14.5", "@types/zxcvbn": "^4.4.0", - "@typescript-eslint/eslint-plugin": "^6.4.0", - "@typescript-eslint/parser": "^6.4.0", + "@typescript-eslint/eslint-plugin": "^6.9.0", + "@typescript-eslint/parser": "^6.9.0", "autoprefixer": "^10.4.7", "axe-core": "^4.4.3", "babel-loader": "^8.0.6", @@ -239,15 +241,15 @@ "cypress": "^13.3.0", "cypress-axe": "^1.5.0", "cypress-terminal-report": "^5.3.7", - "eslint": "^7.8.0", - "eslint-config-prettier": "^8.8.0", + "eslint": "^8.52.0", + "eslint-config-prettier": "^9.0.0", "eslint-plugin-compat": "^4.2.0", - "eslint-plugin-cypress": "^2.13.3", + "eslint-plugin-cypress": "^2.15.1", "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-jest": "^27.2.3", - "eslint-plugin-no-only-tests": "^3.0.0", - "eslint-plugin-prettier": "^3.1.4", - "eslint-plugin-react": "^7.32.2", + "eslint-plugin-jest": "^27.4.3", + "eslint-plugin-no-only-tests": "^3.1.0", + "eslint-plugin-prettier": "^5.0.1", + "eslint-plugin-react": "^7.33.2", "eslint-plugin-storybook": "^0.6.15", "file-loader": "^6.1.0", "givens": "^1.3.6", diff --git a/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts b/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts index 47db9a4ad93ac..b4293e2f538ca 100644 --- a/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts +++ b/plugin-server/src/main/ingestion-queues/batch-processing/each-batch-ingestion.ts @@ -313,7 +313,10 @@ export function splitIngestionBatch( } const pluginEvent = formPipelineEvent(message) const eventKey = computeKey(pluginEvent) - if (overflowMode === IngestionOverflowMode.Reroute && !ConfiguredLimiter.consume(eventKey, 1)) { + if ( + overflowMode === IngestionOverflowMode.Reroute && + !ConfiguredLimiter.consume(eventKey, 1, message.timestamp) + ) { // Local overflow detection triggering, reroute to overflow topic too message.key = null ingestionPartitionKeyOverflowed.labels(`${pluginEvent.team_id ?? pluginEvent.token}`).inc() diff --git a/plugin-server/src/utils/token-bucket.ts b/plugin-server/src/utils/token-bucket.ts index 30f9e1e846e7c..962383554c4a2 100644 --- a/plugin-server/src/utils/token-bucket.ts +++ b/plugin-server/src/utils/token-bucket.ts @@ -21,22 +21,20 @@ export class Storage { } replenish(key: string, now?: number): void { - if (typeof now === 'undefined') { - now = Date.now() - } - - if (this.buckets.has(key) === false) { - this.buckets.set(key, [this.bucketCapacity, now]) + const replenish_timestamp: number = now ?? Date.now() + const bucket = this.buckets.get(key) + if (bucket === undefined) { + this.buckets.set(key, [this.bucketCapacity, replenish_timestamp]) return } - // We have checked the key exists already, so this cannot be undefined - const bucket: Bucket = this.buckets.get(key)! - - // replenishRate is per second, but timestamps are in milliseconds - const replenishedTokens = this.replenishRate * ((now - bucket[1]) / 1000) + bucket[0] - bucket[0] = Math.min(replenishedTokens, this.bucketCapacity) - bucket[1] = now + // Replenish the bucket if replenish_timestamp is higher than lastReplenishedTimestamp + const secondsToReplenish = (replenish_timestamp - bucket[1]) / 1000 + if (secondsToReplenish > 0) { + bucket[0] += this.replenishRate * secondsToReplenish + bucket[0] = Math.min(bucket[0], this.bucketCapacity) + bucket[1] = replenish_timestamp + } } consume(key: string, tokens: number): boolean { diff --git a/plugin-server/tests/main/ingestion-queues/analytics-events-ingestion-consumer.test.ts b/plugin-server/tests/main/ingestion-queues/analytics-events-ingestion-consumer.test.ts index cbb3d06e6a29d..462677a9b46f7 100644 --- a/plugin-server/tests/main/ingestion-queues/analytics-events-ingestion-consumer.test.ts +++ b/plugin-server/tests/main/ingestion-queues/analytics-events-ingestion-consumer.test.ts @@ -4,6 +4,7 @@ import { IngestionOverflowMode, } from '../../../src/main/ingestion-queues/batch-processing/each-batch-ingestion' import { ConfiguredLimiter } from '../../../src/utils/token-bucket' +import { runEventPipeline } from './../../../src/worker/ingestion/event-pipeline/runner' import { captureIngestionWarning } from './../../../src/worker/ingestion/utils' jest.mock('../../../src/utils/status') @@ -12,7 +13,6 @@ jest.mock('./../../../src/worker/ingestion/utils') jest.mock('./../../../src/worker/ingestion/event-pipeline/runner', () => ({ runEventPipeline: jest.fn().mockResolvedValue('default value'), })) -import { runEventPipeline } from './../../../src/worker/ingestion/event-pipeline/runner' const captureEndpointEvent = { uuid: 'uuid1', @@ -94,14 +94,16 @@ describe('eachBatchParallelIngestion with overflow reroute', () => { }) it('reroutes excess events to OVERFLOW topic', async () => { - const batch = createBatchWithMultipleEventsWithKeys([captureEndpointEvent]) + const now = Date.now() + const batch = createBatchWithMultipleEventsWithKeys([captureEndpointEvent], now) const consume = jest.spyOn(ConfiguredLimiter, 'consume').mockImplementation(() => false) await eachBatchParallelIngestion(batch, queue, IngestionOverflowMode.Reroute) expect(consume).toHaveBeenCalledWith( captureEndpointEvent['team_id'] + ':' + captureEndpointEvent['distinct_id'], - 1 + 1, + now ) expect(captureIngestionWarning).not.toHaveBeenCalled() expect(queue.pluginsServer.kafkaProducer.produce).toHaveBeenCalledWith({ @@ -118,14 +120,16 @@ describe('eachBatchParallelIngestion with overflow reroute', () => { }) it('does not reroute if not over capacity limit', async () => { - const batch = createBatchWithMultipleEventsWithKeys([captureEndpointEvent]) + const now = Date.now() + const batch = createBatchWithMultipleEventsWithKeys([captureEndpointEvent], now) const consume = jest.spyOn(ConfiguredLimiter, 'consume').mockImplementation(() => true) await eachBatchParallelIngestion(batch, queue, IngestionOverflowMode.Reroute) expect(consume).toHaveBeenCalledWith( captureEndpointEvent['team_id'] + ':' + captureEndpointEvent['distinct_id'], - 1 + 1, + now ) expect(captureIngestionWarning).not.toHaveBeenCalled() expect(queue.pluginsServer.kafkaProducer.produce).not.toHaveBeenCalled() diff --git a/plugin-server/tests/utils/token-bucket.test.ts b/plugin-server/tests/utils/token-bucket.test.ts index 0b1fe853436a5..8b12ccdf29dcd 100644 --- a/plugin-server/tests/utils/token-bucket.test.ts +++ b/plugin-server/tests/utils/token-bucket.test.ts @@ -59,6 +59,10 @@ describe('Storage', () => { expect(storage.buckets.get(key)![0]).toEqual(10) expect(storage.buckets.get(key)![1]).toEqual(now.valueOf()) + // get two tokens to be replenished + storage.consume(key, 2) + expect(storage.buckets.get(key)![0]).toEqual(8) + // 20 seconds would exceed capacity of 10 tokens at 1 token/sec. storage.replenish(key, now.valueOf() + 20000) @@ -66,6 +70,27 @@ describe('Storage', () => { expect(storage.buckets.get(key)![0]).toEqual(10) expect(storage.buckets.get(key)![1]).toEqual(now.valueOf() + 20000) }) + + it('does not add if now is in the past', () => { + const key = 'test' + const storage = new Storage(10, 1) + const now = new Date('2023-02-08T08:00:00') + + storage.replenish(key, now.valueOf()) + expect(storage.buckets.get(key)![0]).toEqual(10) + expect(storage.buckets.get(key)![1]).toEqual(now.valueOf()) + + // get two tokens to be replenished + storage.consume(key, 2) + expect(storage.buckets.get(key)![0]).toEqual(8) + + // Will be a no-op due to a lower now value + storage.replenish(key, now.valueOf() - 20000) + + expect(storage.buckets.has(key)).toEqual(true) + expect(storage.buckets.get(key)![0]).toEqual(8) + expect(storage.buckets.get(key)![1]).toEqual(now.valueOf()) + }) }) describe('consume()', () => { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4877b89c3edb9..70f37cc6ddc4d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -65,6 +65,12 @@ dependencies: '@tiptap/extension-placeholder': specifier: ^2.1.0-rc.12 version: 2.1.0-rc.12(@tiptap/core@2.1.0-rc.12)(@tiptap/pm@2.1.0-rc.12) + '@tiptap/extension-task-item': + specifier: ^2.1.11 + version: 2.1.11(@tiptap/core@2.1.0-rc.12)(@tiptap/pm@2.1.0-rc.12) + '@tiptap/extension-task-list': + specifier: ^2.1.11 + version: 2.1.11(@tiptap/core@2.1.0-rc.12) '@tiptap/pm': specifier: ^2.1.0-rc.12 version: 2.1.0-rc.12 @@ -197,6 +203,9 @@ dependencies: kea-window-values: specifier: ^3.0.0 version: 3.0.0(kea@3.1.5) + maplibre-gl: + specifier: ^3.5.1 + version: 3.5.1 md5: specifier: ^2.3.0 version: 2.3.0 @@ -207,8 +216,8 @@ dependencies: specifier: ^5.4.1 version: 5.4.1 posthog-js: - specifier: 1.85.3 - version: 1.85.3 + specifier: 1.85.4 + version: 1.85.4 posthog-js-lite: specifier: 2.0.0-alpha5 version: 2.0.0-alpha5 @@ -481,11 +490,11 @@ devDependencies: specifier: ^4.4.0 version: 4.4.1 '@typescript-eslint/eslint-plugin': - specifier: ^6.4.0 - version: 6.4.0(@typescript-eslint/parser@6.4.0)(eslint@7.32.0)(typescript@4.9.5) + specifier: ^6.9.0 + version: 6.9.0(@typescript-eslint/parser@6.9.0)(eslint@8.52.0)(typescript@4.9.5) '@typescript-eslint/parser': - specifier: ^6.4.0 - version: 6.4.0(eslint@7.32.0)(typescript@4.9.5) + specifier: ^6.9.0 + version: 6.9.0(eslint@8.52.0)(typescript@4.9.5) autoprefixer: specifier: ^10.4.7 version: 10.4.13(postcss@8.4.31) @@ -517,35 +526,35 @@ devDependencies: specifier: ^5.3.7 version: 5.3.7(cypress@13.3.0) eslint: - specifier: ^7.8.0 - version: 7.32.0 + specifier: ^8.52.0 + version: 8.52.0 eslint-config-prettier: - specifier: ^8.8.0 - version: 8.8.0(eslint@7.32.0) + specifier: ^9.0.0 + version: 9.0.0(eslint@8.52.0) eslint-plugin-compat: specifier: ^4.2.0 - version: 4.2.0(eslint@7.32.0) + version: 4.2.0(eslint@8.52.0) eslint-plugin-cypress: - specifier: ^2.13.3 - version: 2.13.3(eslint@7.32.0) + specifier: ^2.15.1 + version: 2.15.1(eslint@8.52.0) eslint-plugin-eslint-comments: specifier: ^3.2.0 - version: 3.2.0(eslint@7.32.0) + version: 3.2.0(eslint@8.52.0) eslint-plugin-jest: - specifier: ^27.2.3 - version: 27.2.3(@typescript-eslint/eslint-plugin@6.4.0)(eslint@7.32.0)(jest@29.3.1)(typescript@4.9.5) + specifier: ^27.4.3 + version: 27.4.3(@typescript-eslint/eslint-plugin@6.9.0)(eslint@8.52.0)(jest@29.3.1)(typescript@4.9.5) eslint-plugin-no-only-tests: - specifier: ^3.0.0 + specifier: ^3.1.0 version: 3.1.0 eslint-plugin-prettier: - specifier: ^3.1.4 - version: 3.4.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.8) + specifier: ^5.0.1 + version: 5.0.1(eslint-config-prettier@9.0.0)(eslint@8.52.0)(prettier@2.8.8) eslint-plugin-react: - specifier: ^7.32.2 - version: 7.32.2(eslint@7.32.0) + specifier: ^7.33.2 + version: 7.33.2(eslint@8.52.0) eslint-plugin-storybook: specifier: ^0.6.15 - version: 0.6.15(eslint@7.32.0)(typescript@4.9.5) + version: 0.6.15(eslint@8.52.0)(typescript@4.9.5) file-loader: specifier: ^6.1.0 version: 6.2.0(webpack@5.88.2) @@ -657,6 +666,11 @@ devDependencies: packages: + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + /@adobe/css-tools@4.0.1: resolution: {integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==} dev: true @@ -714,12 +728,6 @@ packages: default-browser-id: 3.0.0 dev: true - /@babel/code-frame@7.12.11: - resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} - dependencies: - '@babel/highlight': 7.22.10 - dev: true - /@babel/code-frame@7.22.10: resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} engines: {node: '>=6.9.0'} @@ -2426,13 +2434,13 @@ packages: dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@7.32.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 7.32.0 + eslint: 8.52.0 eslint-visitor-keys: 3.4.3 dev: true @@ -2441,23 +2449,28 @@ packages: engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true - /@eslint/eslintrc@0.4.3: - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} + /@eslint/eslintrc@2.1.2: + resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4(supports-color@8.1.1) - espree: 7.3.1 - globals: 13.17.0 - ignore: 4.0.6 + espree: 9.6.1 + globals: 13.23.0 + ignore: 5.2.4 import-fresh: 3.3.0 - js-yaml: 3.14.1 + js-yaml: 4.1.0 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color dev: true + /@eslint/js@8.52.0: + resolution: {integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /@fal-works/esbuild-plugin-global-externals@2.1.2: resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} dev: true @@ -2535,19 +2548,24 @@ packages: scheduler: 0.19.1 dev: true - /@humanwhocodes/config-array@0.5.0: - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + /@humanwhocodes/config-array@0.11.13: + resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} engines: {node: '>=10.10.0'} dependencies: - '@humanwhocodes/object-schema': 1.2.1 + '@humanwhocodes/object-schema': 2.0.1 debug: 4.3.4(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color dev: true - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + /@humanwhocodes/module-importer@1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + dev: true + + /@humanwhocodes/object-schema@2.0.1: + resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} dev: true /@isaacs/cliui@8.0.2: @@ -3085,6 +3103,54 @@ packages: react: 16.14.0 dev: false + /@mapbox/geojson-rewind@0.5.2: + resolution: {integrity: sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==} + hasBin: true + dependencies: + get-stream: 6.0.1 + minimist: 1.2.8 + dev: false + + /@mapbox/jsonlint-lines-primitives@2.0.2: + resolution: {integrity: sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==} + engines: {node: '>= 0.6'} + dev: false + + /@mapbox/point-geometry@0.1.0: + resolution: {integrity: sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==} + dev: false + + /@mapbox/tiny-sdf@2.0.6: + resolution: {integrity: sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==} + dev: false + + /@mapbox/unitbezier@0.0.1: + resolution: {integrity: sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==} + dev: false + + /@mapbox/vector-tile@1.3.1: + resolution: {integrity: sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==} + dependencies: + '@mapbox/point-geometry': 0.1.0 + dev: false + + /@mapbox/whoots-js@3.1.0: + resolution: {integrity: sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==} + engines: {node: '>=6.0.0'} + dev: false + + /@maplibre/maplibre-gl-style-spec@19.3.3: + resolution: {integrity: sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw==} + hasBin: true + dependencies: + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/unitbezier': 0.0.1 + json-stringify-pretty-compact: 3.0.0 + minimist: 1.2.8 + rw: 1.3.3 + sort-object: 3.0.3 + dev: false + /@maxmind/geoip2-node@3.5.0: resolution: {integrity: sha512-WG2TNxMwDWDOrljLwyZf5bwiEYubaHuICvQRlgz74lE9OZA/z4o+ZT6OisjDBAZh/yRJVNK6mfHqmP5lLlAwsA==} dependencies: @@ -3215,6 +3281,18 @@ packages: dev: true optional: true + /@pkgr/utils@2.4.2: + resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + dependencies: + cross-spawn: 7.0.3 + fast-glob: 3.3.1 + is-glob: 4.0.3 + open: 9.1.0 + picocolors: 1.0.0 + tslib: 2.6.2 + dev: true + /@playwright/test@1.29.2: resolution: {integrity: sha512-+3/GPwOgcoF0xLz/opTnahel1/y42PdcgZ4hs+BZGIUjtmEFSXGg+nFoaH3NSmuc7a6GSFwXDJ5L7VXpqzigNg==} engines: {node: '>=14'} @@ -5505,6 +5583,24 @@ packages: '@tiptap/core': 2.1.0-rc.12(@tiptap/pm@2.1.0-rc.12) dev: false + /@tiptap/extension-task-item@2.1.11(@tiptap/core@2.1.0-rc.12)(@tiptap/pm@2.1.0-rc.12): + resolution: {integrity: sha512-721inc/MAZkljPup/EWCpNho4nf+XrYVKWRixqgX+AjikusTJefylbiZ5OeRn+71osTA7SdnXiKkM2ZbHtAsYA==} + peerDependencies: + '@tiptap/core': ^2.0.0 + '@tiptap/pm': ^2.0.0 + dependencies: + '@tiptap/core': 2.1.0-rc.12(@tiptap/pm@2.1.0-rc.12) + '@tiptap/pm': 2.1.0-rc.12 + dev: false + + /@tiptap/extension-task-list@2.1.11(@tiptap/core@2.1.0-rc.12): + resolution: {integrity: sha512-9C1M9N3jbNjm4001mPkgwUH19b6ZvKj5nnRT3zib/gFIQLOnSHE3VErDPHP/lkkjH84LgOMrm69cm8chQpgNsA==} + peerDependencies: + '@tiptap/core': ^2.0.0 + dependencies: + '@tiptap/core': 2.1.0-rc.12(@tiptap/pm@2.1.0-rc.12) + dev: false + /@tiptap/extension-text@2.1.0-rc.12(@tiptap/core@2.1.0-rc.12): resolution: {integrity: sha512-6rJvPkpypaEW+jM6oB9kMXg+wy7xbDnGBFLRvCuA4Tr5Y+S+i34CzcihyARr90p+scYkOl+6QYVww4oisRFskA==} peerDependencies: @@ -5959,6 +6055,10 @@ packages: resolution: {integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==} dev: true + /@types/geojson@7946.0.12: + resolution: {integrity: sha512-uK2z1ZHJyC0nQRbuovXFt4mzXDwf27vQeUWNhfKGwRcWW429GOhP8HxUHlM6TLH4bzmlv/HlEjpvJh3JfmGsAA==} + dev: false + /@types/graceful-fs@4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: @@ -6043,6 +6143,18 @@ packages: resolution: {integrity: sha512-zmEmF5OIM3rb7SbLCFYoQhO4dGt2FRM9AMkxvA3LaADOF1n8in/zGJlWji9fmafLoNyz+FoL6FE0SLtGIArD7w==} dev: true + /@types/mapbox__point-geometry@0.1.3: + resolution: {integrity: sha512-2W46IOXlu7vC8m3+M5rDqSnuY22GFxxx3xhkoyqyPWrD+eP2iAwNst0A1+umLYjCTJMJTSpiofphn9h9k+Kw+w==} + dev: false + + /@types/mapbox__vector-tile@1.3.3: + resolution: {integrity: sha512-d263B3KCQtXKVZMHpMJrEW5EeLBsQ8jvAS9nhpUKC5hHIlQaACG9PWkW8qxEeNuceo9120AwPjeS91uNa4ltqA==} + dependencies: + '@types/geojson': 7946.0.12 + '@types/mapbox__point-geometry': 0.1.3 + '@types/pbf': 3.0.4 + dev: false + /@types/md5@2.3.2: resolution: {integrity: sha512-v+JFDu96+UYJ3/UWzB0mEglIS//MZXgRaJ4ubUPwOM0gvLc/kcQ3TWNYwENEK7/EcXGQVrW8h/XqednSjBd/Og==} dev: false @@ -6110,6 +6222,10 @@ packages: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true + /@types/pbf@3.0.4: + resolution: {integrity: sha512-SOFlLGZkLbEXJRwcWCqeP/Koyaf/uAqLXHUsdo/nMfjLsNd8kqauwHe9GBOljSmpcHp/LC6kOjo3SidGjNirVA==} + dev: false + /@types/pica@9.0.1: resolution: {integrity: sha512-hTsYxcy0MqIOKzeALuh3zOHyozBlndxV/bX9X52GBFq2XUQchZF6T0vcRYeT5P1ggmswi2LlIwHAH+bKWxxalg==} dev: true @@ -6257,6 +6373,12 @@ packages: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} dev: true + /@types/supercluster@7.1.2: + resolution: {integrity: sha512-qMhofL945Z4njQUuntadexAgPtpiBC014WvVqU70Prj42LC77Xgmz04us7hSMmwjs7KbgAwGBmje+FSOvDbP0Q==} + dependencies: + '@types/geojson': 7946.0.12 + dev: false + /@types/testing-library__jest-dom@5.14.5: resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: @@ -6312,8 +6434,8 @@ packages: resolution: {integrity: sha512-3NoqvZC2W5gAC5DZbTpCeJ251vGQmgcWIHQJGq2J240HY6ErQ9aWKkwfoKJlHLx+A83WPNTZ9+3cd2ILxbvr1w==} dev: true - /@typescript-eslint/eslint-plugin@6.4.0(@typescript-eslint/parser@6.4.0)(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-62o2Hmc7Gs3p8SLfbXcipjWAa6qk2wZGChXG2JbBtYpwSRmti/9KHLqfbLs9uDigOexG+3PaQ9G2g3201FWLKg==} + /@typescript-eslint/eslint-plugin@6.9.0(@typescript-eslint/parser@6.9.0)(eslint@8.52.0)(typescript@4.9.5): + resolution: {integrity: sha512-lgX7F0azQwRPB7t7WAyeHWVfW1YJ9NIgd9mvGhfQpRY56X6AVf8mwM8Wol+0z4liE7XX3QOt8MN1rUKCfSjRIA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha @@ -6324,13 +6446,13 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.6.2 - '@typescript-eslint/parser': 6.4.0(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 6.4.0 - '@typescript-eslint/type-utils': 6.4.0(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/utils': 6.4.0(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/visitor-keys': 6.4.0 + '@typescript-eslint/parser': 6.9.0(eslint@8.52.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 6.9.0 + '@typescript-eslint/type-utils': 6.9.0(eslint@8.52.0)(typescript@4.9.5) + '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.9.0 debug: 4.3.4(supports-color@8.1.1) - eslint: 7.32.0 + eslint: 8.52.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare: 1.4.0 @@ -6341,8 +6463,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@6.4.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-I1Ah1irl033uxjxO9Xql7+biL3YD7w9IU8zF+xlzD/YxY6a4b7DYA08PXUUCbm2sEljwJF6ERFy2kTGAGcNilg==} + /@typescript-eslint/parser@6.9.0(eslint@8.52.0)(typescript@4.9.5): + resolution: {integrity: sha512-GZmjMh4AJ/5gaH4XF2eXA8tMnHWP+Pm1mjQR2QN4Iz+j/zO04b9TOvJYOX2sCNIQHtRStKTxRY1FX7LhpJT4Gw==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -6351,12 +6473,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.4.0 - '@typescript-eslint/types': 6.4.0 - '@typescript-eslint/typescript-estree': 6.4.0(typescript@4.9.5) - '@typescript-eslint/visitor-keys': 6.4.0 + '@typescript-eslint/scope-manager': 6.9.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/typescript-estree': 6.9.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.9.0 debug: 4.3.4(supports-color@8.1.1) - eslint: 7.32.0 + eslint: 8.52.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color @@ -6370,16 +6492,16 @@ packages: '@typescript-eslint/visitor-keys': 5.55.0 dev: true - /@typescript-eslint/scope-manager@6.4.0: - resolution: {integrity: sha512-TUS7vaKkPWDVvl7GDNHFQMsMruD+zhkd3SdVW0d7b+7Zo+bd/hXJQ8nsiUZMi1jloWo6c9qt3B7Sqo+flC1nig==} + /@typescript-eslint/scope-manager@6.9.0: + resolution: {integrity: sha512-1R8A9Mc39n4pCCz9o79qRO31HGNDvC7UhPhv26TovDsWPBDx+Sg3rOZdCELIA3ZmNoWAuxaMOT7aWtGRSYkQxw==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.4.0 - '@typescript-eslint/visitor-keys': 6.4.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/visitor-keys': 6.9.0 dev: true - /@typescript-eslint/type-utils@6.4.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-TvqrUFFyGY0cX3WgDHcdl2/mMCWCDv/0thTtx/ODMY1QhEiyFtv/OlLaNIiYLwRpAxAtOLOY9SUf1H3Q3dlwAg==} + /@typescript-eslint/type-utils@6.9.0(eslint@8.52.0)(typescript@4.9.5): + resolution: {integrity: sha512-XXeahmfbpuhVbhSOROIzJ+b13krFmgtc4GlEuu1WBT+RpyGPIA4Y/eGnXzjbDj5gZLzpAXO/sj+IF/x2GtTMjQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -6388,10 +6510,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.4.0(typescript@4.9.5) - '@typescript-eslint/utils': 6.4.0(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 6.9.0(typescript@4.9.5) + '@typescript-eslint/utils': 6.9.0(eslint@8.52.0)(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 7.32.0 + eslint: 8.52.0 ts-api-utils: 1.0.2(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: @@ -6403,8 +6525,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types@6.4.0: - resolution: {integrity: sha512-+FV9kVFrS7w78YtzkIsNSoYsnOtrYVnKWSTVXoL1761CsCRv5wpDOINgsXpxD67YCLZtVQekDDyaxfjVWUJmmg==} + /@typescript-eslint/types@6.9.0: + resolution: {integrity: sha512-+KB0lbkpxBkBSiVCuQvduqMJy+I1FyDbdwSpM3IoBS7APl4Bu15lStPjgBIdykdRqQNYqYNMa8Kuidax6phaEw==} engines: {node: ^16.0.0 || >=18.0.0} dev: true @@ -6429,8 +6551,8 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.4.0(typescript@4.9.5): - resolution: {integrity: sha512-iDPJArf/K2sxvjOR6skeUCNgHR/tCQXBsa+ee1/clRKr3olZjZ/dSkXPZjG6YkPtnW6p5D1egeEPMCW6Gn4yLA==} + /@typescript-eslint/typescript-estree@6.9.0(typescript@4.9.5): + resolution: {integrity: sha512-NJM2BnJFZBEAbCfBP00zONKXvMqihZCrmwCaik0UhLr0vAgb6oguXxLX1k00oQyD+vZZ+CJn3kocvv2yxm4awQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' @@ -6438,8 +6560,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.4.0 - '@typescript-eslint/visitor-keys': 6.4.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/visitor-keys': 6.9.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 @@ -6450,19 +6572,19 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@5.55.0(eslint@7.32.0)(typescript@4.9.5): + /@typescript-eslint/utils@5.55.0(eslint@8.52.0)(typescript@4.9.5): resolution: {integrity: sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0) '@types/json-schema': 7.0.12 '@types/semver': 7.5.0 '@typescript-eslint/scope-manager': 5.55.0 '@typescript-eslint/types': 5.55.0 '@typescript-eslint/typescript-estree': 5.55.0(typescript@4.9.5) - eslint: 7.32.0 + eslint: 8.52.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: @@ -6470,19 +6592,19 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.4.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-BvvwryBQpECPGo8PwF/y/q+yacg8Hn/2XS+DqL/oRsOPK+RPt29h5Ui5dqOKHDlbXrAeHUTnyG3wZA0KTDxRZw==} + /@typescript-eslint/utils@6.9.0(eslint@8.52.0)(typescript@4.9.5): + resolution: {integrity: sha512-5Wf+Jsqya7WcCO8me504FBigeQKVLAMPmUzYgDbWchINNh1KJbxCgVya3EQ2MjvJMVeXl3pofRmprqX6mfQkjQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0) '@types/json-schema': 7.0.12 '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 6.4.0 - '@typescript-eslint/types': 6.4.0 - '@typescript-eslint/typescript-estree': 6.4.0(typescript@4.9.5) - eslint: 7.32.0 + '@typescript-eslint/scope-manager': 6.9.0 + '@typescript-eslint/types': 6.9.0 + '@typescript-eslint/typescript-estree': 6.9.0(typescript@4.9.5) + eslint: 8.52.0 semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -6497,14 +6619,18 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@typescript-eslint/visitor-keys@6.4.0: - resolution: {integrity: sha512-yJSfyT+uJm+JRDWYRYdCm2i+pmvXJSMtPR9Cq5/XQs4QIgNoLcoRtDdzsLbLsFM/c6um6ohQkg/MLxWvoIndJA==} + /@typescript-eslint/visitor-keys@6.9.0: + resolution: {integrity: sha512-dGtAfqjV6RFOtIP8I0B4ZTBRrlTT8NHHlZZSchQx3qReaoDeXhYM++M4So2AgFK9ZB0emRPA6JI1HkafzA2Ibg==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.4.0 + '@typescript-eslint/types': 6.9.0 eslint-visitor-keys: 3.4.3 dev: true + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: true + /@webassemblyjs/ast@1.11.6: resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} dependencies: @@ -6676,7 +6802,7 @@ packages: esbuild: '>=0.10.0' dependencies: esbuild: 0.18.20 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /@yarnpkg/fslib@2.10.3: @@ -6735,6 +6861,14 @@ packages: acorn: 7.4.1 dev: true + /acorn-jsx@5.3.2(acorn@8.10.0): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.10.0 + dev: true + /acorn-walk@7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} @@ -6996,7 +7130,6 @@ packages: /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: false /aria-hidden@1.2.1(@types/react@16.14.34)(react@16.14.0): resolution: {integrity: sha512-PN344VAf9j1EAi+jyVHOJ8XidQdPVssGco39eNcsGdM4wcsILtxrKLkbuiMfLWYROK1FjRQasMWCBttrhjnr6A==} @@ -7017,6 +7150,18 @@ packages: dependencies: deep-equal: 2.1.0 + /arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + dev: false + + /array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + dependencies: + call-bind: 1.0.5 + is-array-buffer: 3.0.2 + dev: true + /array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} @@ -7054,9 +7199,9 @@ packages: resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true @@ -7071,6 +7216,19 @@ packages: get-intrinsic: 1.1.3 dev: true + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + /asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} dev: false @@ -7094,6 +7252,11 @@ packages: util: 0.12.5 dev: true + /assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + dev: false + /ast-metadata-inferer@0.8.0: resolution: {integrity: sha512-jOMKcHht9LxYIEQu+RVd22vtgrPaVCtDRQ/16IGmurdzxvYbDd5ynxjnyrzLnieG96eTcAyaoj/wN/4/1FyyeA==} dependencies: @@ -7104,21 +7267,21 @@ packages: resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} engines: {node: '>=4'} dependencies: - tslib: 2.4.1 + tslib: 2.6.2 dev: true /ast-types@0.15.2: resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} engines: {node: '>=4'} dependencies: - tslib: 2.4.1 + tslib: 2.6.2 dev: true /ast-types@0.16.1: resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} engines: {node: '>=4'} dependencies: - tslib: 2.4.1 + tslib: 2.6.2 dev: true /astral-regex@2.0.0: @@ -7138,6 +7301,12 @@ packages: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} dev: true + /asynciterator.prototype@1.0.0: + resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} + dependencies: + has-symbols: 1.0.3 + dev: true + /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: true @@ -7559,6 +7728,13 @@ packages: ieee754: 1.2.1 dev: true + /bundle-name@3.0.0: + resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} + engines: {node: '>=12'} + dependencies: + run-applescript: 5.0.0 + dev: true + /bytes@3.0.0: resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} @@ -7568,6 +7744,19 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} + /bytewise-core@1.2.3: + resolution: {integrity: sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==} + dependencies: + typewise-core: 1.2.0 + dev: false + + /bytewise@1.1.0: + resolution: {integrity: sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==} + dependencies: + bytewise-core: 1.2.3 + typewise: 1.0.3 + dev: false + /c8@7.14.0: resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} engines: {node: '>=10.12.0'} @@ -7606,7 +7795,14 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 + + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 /caller-callsite@2.0.0: resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} @@ -7636,7 +7832,7 @@ packages: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /camelcase-keys@7.0.2: @@ -8919,6 +9115,16 @@ packages: untildify: 4.0.0 dev: true + /default-browser@4.0.0: + resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} + engines: {node: '>=14.16'} + dependencies: + bundle-name: 3.0.0 + default-browser-id: 3.0.0 + execa: 7.2.0 + titleize: 3.0.0 + dev: true + /default-require-extensions@3.0.1: resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} engines: {node: '>=8'} @@ -8932,17 +9138,39 @@ packages: clone: 1.0.4 dev: true + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.0 + /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} dev: true + /define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + dev: true + /define-properties@1.1.4: resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} engines: {node: '>= 0.4'} dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 + dev: true + + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 /defu@6.1.2: resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} @@ -9167,7 +9395,7 @@ packages: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /dot-prop@5.3.0: @@ -9196,6 +9424,10 @@ packages: stream-shift: 1.0.1 dev: true + /earcut@2.2.4: + resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==} + dev: false + /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} dev: true @@ -9331,12 +9563,12 @@ packages: es-to-primitive: 1.2.1 function-bind: 1.1.1 function.prototype.name: 1.1.5 - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 has: 1.0.3 has-property-descriptors: 1.0.0 has-symbols: 1.0.3 - internal-slot: 1.0.3 + internal-slot: 1.0.6 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 @@ -9353,6 +9585,51 @@ packages: unbox-primitive: 1.0.2 dev: true + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + internal-slot: 1.0.6 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.12 + is-weakref: 1.0.2 + object-inspect: 1.13.1 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.13 + dev: true + /es-array-method-boxes-properly@1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} dev: true @@ -9360,8 +9637,8 @@ packages: /es-get-iterator@1.1.2: resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -9369,10 +9646,38 @@ packages: is-string: 1.0.7 isarray: 2.0.5 + /es-iterator-helpers@1.0.15: + resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} + dependencies: + asynciterator.prototype: 1.0.0 + call-bind: 1.0.2 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.1 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 + dev: true + /es-module-lexer@1.3.0: resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==} dev: true + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + has-tostringtag: 1.0.0 + hasown: 2.0.0 + dev: true + /es-shim-unscopables@1.0.0: resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} dependencies: @@ -9682,16 +9987,16 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier@8.8.0(eslint@7.32.0): - resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} + /eslint-config-prettier@9.0.0(eslint@8.52.0): + resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 7.32.0 + eslint: 8.52.0 dev: true - /eslint-plugin-compat@4.2.0(eslint@7.32.0): + /eslint-plugin-compat@4.2.0(eslint@8.52.0): resolution: {integrity: sha512-RDKSYD0maWy5r7zb5cWQS+uSPc26mgOzdORJ8hxILmWM7S/Ncwky7BcAtXVY5iRbKjBdHsWU8Yg7hfoZjtkv7w==} engines: {node: '>=14.x'} peerDependencies: @@ -9701,34 +10006,34 @@ packages: ast-metadata-inferer: 0.8.0 browserslist: 4.21.10 caniuse-lite: 1.0.30001538 - eslint: 7.32.0 + eslint: 8.52.0 find-up: 5.0.0 lodash.memoize: 4.1.2 semver: 7.5.4 dev: true - /eslint-plugin-cypress@2.13.3(eslint@7.32.0): - resolution: {integrity: sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==} + /eslint-plugin-cypress@2.15.1(eslint@8.52.0): + resolution: {integrity: sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==} peerDependencies: eslint: '>= 3.2.1' dependencies: - eslint: 7.32.0 - globals: 11.12.0 + eslint: 8.52.0 + globals: 13.23.0 dev: true - /eslint-plugin-eslint-comments@3.2.0(eslint@7.32.0): + /eslint-plugin-eslint-comments@3.2.0(eslint@8.52.0): resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} engines: {node: '>=6.5.0'} peerDependencies: eslint: '>=4.19.1' dependencies: escape-string-regexp: 1.0.5 - eslint: 7.32.0 + eslint: 8.52.0 ignore: 5.2.4 dev: true - /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.4.0)(eslint@7.32.0)(jest@29.3.1)(typescript@4.9.5): - resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==} + /eslint-plugin-jest@27.4.3(@typescript-eslint/eslint-plugin@6.9.0)(eslint@8.52.0)(jest@29.3.1)(typescript@4.9.5): + resolution: {integrity: sha512-7S6SmmsHsgIm06BAGCAxL+ABd9/IB3MWkz2pudj6Qqor2y1qQpWPfuFU4SG9pWj4xDjF0e+D7Llh5useuSzAZw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 @@ -9740,9 +10045,9 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.4.0(@typescript-eslint/parser@6.4.0)(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.55.0(eslint@7.32.0)(typescript@4.9.5) - eslint: 7.32.0 + '@typescript-eslint/eslint-plugin': 6.9.0(@typescript-eslint/parser@6.9.0)(eslint@8.52.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.55.0(eslint@8.52.0)(typescript@4.9.5) + eslint: 8.52.0 jest: 29.3.1(@types/node@18.11.9)(ts-node@10.9.1) transitivePeerDependencies: - supports-color @@ -9754,25 +10059,29 @@ packages: engines: {node: '>=5.0.0'} dev: true - /eslint-plugin-prettier@3.4.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.8): - resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} - engines: {node: '>=6.0.0'} + /eslint-plugin-prettier@5.0.1(eslint-config-prettier@9.0.0)(eslint@8.52.0)(prettier@2.8.8): + resolution: {integrity: sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: '>=5.0.0' + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' eslint-config-prettier: '*' - prettier: '>=1.13.0' + prettier: '>=3.0.0' peerDependenciesMeta: + '@types/eslint': + optional: true eslint-config-prettier: optional: true dependencies: - eslint: 7.32.0 - eslint-config-prettier: 8.8.0(eslint@7.32.0) + eslint: 8.52.0 + eslint-config-prettier: 9.0.0(eslint@8.52.0) prettier: 2.8.8 prettier-linter-helpers: 1.0.0 + synckit: 0.8.5 dev: true - /eslint-plugin-react@7.32.2(eslint@7.32.0): - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} + /eslint-plugin-react@7.33.2(eslint@8.52.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -9781,7 +10090,8 @@ packages: array.prototype.flatmap: 1.3.1 array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 - eslint: 7.32.0 + es-iterator-helpers: 1.0.15 + eslint: 8.52.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -9795,15 +10105,15 @@ packages: string.prototype.matchall: 4.0.8 dev: true - /eslint-plugin-storybook@0.6.15(eslint@7.32.0)(typescript@4.9.5): + /eslint-plugin-storybook@0.6.15(eslint@8.52.0)(typescript@4.9.5): resolution: {integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==} engines: {node: 12.x || 14.x || >= 16} peerDependencies: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.55.0(eslint@7.32.0)(typescript@4.9.5) - eslint: 7.32.0 + '@typescript-eslint/utils': 5.55.0(eslint@8.52.0)(typescript@4.9.5) + eslint: 8.52.0 requireindex: 1.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -9819,21 +10129,12 @@ packages: estraverse: 4.3.0 dev: true - /eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - eslint-visitor-keys: 1.3.0 - dev: true - - /eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} - dev: true - - /eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + esrecurse: 4.3.0 + estraverse: 5.3.0 dev: true /eslint-visitor-keys@3.4.3: @@ -9841,62 +10142,60 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} + /eslint@8.52.0: + resolution: {integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@babel/code-frame': 7.12.11 - '@eslint/eslintrc': 0.4.3 - '@humanwhocodes/config-array': 0.5.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0) + '@eslint-community/regexpp': 4.6.2 + '@eslint/eslintrc': 2.1.2 + '@eslint/js': 8.52.0 + '@humanwhocodes/config-array': 0.11.13 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 - enquirer: 2.3.6 escape-string-regexp: 4.0.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 - eslint-visitor-keys: 2.1.0 - espree: 7.3.1 - esquery: 1.4.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 - functional-red-black-tree: 1.0.1 - glob-parent: 5.1.2 - globals: 13.17.0 - ignore: 4.0.6 - import-fresh: 3.3.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.23.0 + graphemer: 1.4.0 + ignore: 5.2.4 imurmurhash: 0.1.4 is-glob: 4.0.3 - js-yaml: 3.14.1 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.1 - progress: 2.0.3 - regexpp: 3.2.0 - semver: 7.5.4 + optionator: 0.9.3 strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - table: 6.8.1 text-table: 0.2.0 - v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color dev: true - /espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 7.4.1 - acorn-jsx: 5.3.2(acorn@7.4.1) - eslint-visitor-keys: 1.3.0 + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) + eslint-visitor-keys: 3.4.3 dev: true /esprima@4.0.1: @@ -9905,8 +10204,8 @@ packages: hasBin: true dev: true - /esquery@1.4.0: - resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} + /esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 @@ -9988,6 +10287,21 @@ packages: strip-final-newline: 2.0.0 dev: true + /execa@7.2.0: + resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 4.3.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.1.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + /executable@4.1.1: resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} engines: {node: '>=4'} @@ -10079,6 +10393,21 @@ packages: transitivePeerDependencies: - supports-color + /extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + dependencies: + is-extendable: 0.1.1 + dev: false + + /extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + dev: false + /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} @@ -10139,6 +10468,17 @@ packages: micromatch: 4.0.5 dev: true + /fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + /fast-json-parse@1.0.3: resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} dev: true @@ -10561,18 +10901,27 @@ packages: /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + /function.prototype.name@1.1.5: resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 dev: true - /functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + functions-have-names: 1.2.3 dev: true /functions-have-names@1.2.3: @@ -10587,6 +10936,10 @@ packages: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} + /geojson-vt@3.2.1: + resolution: {integrity: sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==} + dev: false + /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} @@ -10599,7 +10952,15 @@ packages: has: 1.0.3 has-symbols: 1.0.3 - /get-nonce@1.0.1: + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + dependencies: + function-bind: 1.1.2 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + + /get-nonce@1.0.1: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} engines: {node: '>=6'} dev: true @@ -10638,16 +10999,20 @@ packages: /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} - dev: true /get-symbol-description@1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true + /get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + dev: false + /getos@3.2.1: resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} dependencies: @@ -10683,12 +11048,23 @@ packages: resolution: {integrity: sha512-4hYlStsEIaYeYvZTZwgD5yOS2WVP0dcDsOBqeImdEM8eLuclvv0IEMlQQ1kuA5DN4he7wVH1jsYtNe9uininxg==} dev: true + /gl-matrix@3.4.3: + resolution: {integrity: sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==} + dev: false + /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + /glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} dev: true @@ -10763,17 +11139,33 @@ packages: which: 1.3.1 dev: true + /global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + dev: false + /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals@13.17.0: - resolution: {integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==} + /globals@13.23.0: + resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 dev: true + /globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.1 + dev: true + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -10792,7 +11184,7 @@ packages: /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -10845,7 +11237,11 @@ packages: /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} @@ -10861,7 +11257,7 @@ packages: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 /hasha@5.2.2: resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} @@ -10871,6 +11267,12 @@ packages: type-fest: 0.8.1 dev: true + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + /hast-util-parse-selector@2.2.5: resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} @@ -11091,6 +11493,11 @@ packages: engines: {node: '>=10.17.0'} dev: true + /human-signals@4.3.1: + resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} + engines: {node: '>=14.18.0'} + dev: true + /humps@2.0.1: resolution: {integrity: sha512-E0eIbrFWUhwfXJmsbdjRQFQPrl5pTEoKlz163j1mTqqUnU9PgR4AgB8AIITzuB3vLBdxZXyZ9TDIrwB2OASz4g==} dev: false @@ -11135,12 +11542,6 @@ packages: /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - dev: true - - /ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} - dev: true /ignore@5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} @@ -11214,7 +11615,6 @@ packages: /ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - dev: true /ini@2.0.0: resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} @@ -11252,11 +11652,20 @@ packages: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 has: 1.0.3 side-channel: 1.0.4 dev: true + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + hasown: 2.0.0 + side-channel: 1.0.4 + dev: true + /internmap@1.0.1: resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} dev: false @@ -11310,9 +11719,17 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 + /is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true @@ -11321,6 +11738,13 @@ packages: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} dev: true + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: @@ -11336,7 +11760,7 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-buffer@1.1.6: @@ -11399,6 +11823,17 @@ packages: hasBin: true dev: true + /is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + dev: true + + /is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + dev: false + /is-extendable@1.0.1: resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} engines: {node: '>=0.10.0'} @@ -11410,6 +11845,12 @@ packages: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} + /is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + dependencies: + call-bind: 1.0.5 + dev: true + /is-fullwidth-code-point@2.0.0: resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} engines: {node: '>=4'} @@ -11446,6 +11887,14 @@ packages: /is-hexadecimal@1.0.4: resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + /is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + dependencies: + is-docker: 3.0.0 + dev: true + /is-installed-globally@0.4.0: resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} engines: {node: '>=10'} @@ -11466,8 +11915,8 @@ packages: resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 + call-bind: 1.0.5 + define-properties: 1.2.1 dev: true /is-negative-zero@2.0.2: @@ -11533,7 +11982,7 @@ packages: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-regexp@1.0.0: @@ -11551,7 +12000,7 @@ packages: /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-stream@2.0.1: @@ -11559,6 +12008,11 @@ packages: engines: {node: '>=8'} dev: true + /is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + /is-string@1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} @@ -11576,10 +12030,17 @@ packages: engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 + dev: true + + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.13 /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} @@ -11596,14 +12057,14 @@ packages: /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 /is-what@3.14.1: resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} @@ -11634,7 +12095,6 @@ packages: /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - dev: true /isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} @@ -11721,6 +12181,16 @@ packages: istanbul-lib-report: 3.0.0 dev: true + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 + dev: true + /jackspeak@2.3.0: resolution: {integrity: sha512-uKmsITSsF4rUWQHzqaRUuyAir3fZfW3f202Ee34lz/gZCi970CPZwyQXLGNgWJvvZbvFyzeyGq0+4fcG/mBKZg==} engines: {node: '>=14'} @@ -12798,6 +13268,13 @@ packages: esprima: 4.0.1 dev: true + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + /jsbn@0.1.1: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} dev: true @@ -12906,6 +13383,10 @@ packages: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} dev: true + /json-stringify-pretty-compact@3.0.0: + resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==} + dev: false + /json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} dev: true @@ -12956,6 +13437,10 @@ packages: object.assign: 4.1.4 dev: true + /kdbush@4.0.2: + resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==} + dev: false + /kea-forms@3.0.3(kea@3.1.5): resolution: {integrity: sha512-ApiirM7K103ULa0hNNcJHiJ0ffvuVIn9Nwg4wsEadfyraV9GLrWVbUeZWW0qFI2zTlkizDplM/gc3gGUfQTs9g==} peerDependencies: @@ -13054,7 +13539,6 @@ packages: /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - dev: true /kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} @@ -13301,10 +13785,6 @@ packages: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} dev: true - /lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - dev: true - /lodash.uniq@4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} dev: true @@ -13343,7 +13823,7 @@ packages: /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.4.1 + tslib: 2.6.2 dev: true /lowlight@1.20.0: @@ -13406,6 +13886,37 @@ packages: resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} dev: true + /maplibre-gl@3.5.1: + resolution: {integrity: sha512-XFpqAKjpm7Y6cV3B1MDZ3FGUCXyrfeM2QkXloKc4x2QK9/e6/BEHdVebtxXcTrwdzpQexKrMqzdYCbaobJRNrw==} + engines: {node: '>=16.14.0', npm: '>=8.1.0'} + dependencies: + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/point-geometry': 0.1.0 + '@mapbox/tiny-sdf': 2.0.6 + '@mapbox/unitbezier': 0.0.1 + '@mapbox/vector-tile': 1.3.1 + '@mapbox/whoots-js': 3.1.0 + '@maplibre/maplibre-gl-style-spec': 19.3.3 + '@types/geojson': 7946.0.12 + '@types/mapbox__point-geometry': 0.1.3 + '@types/mapbox__vector-tile': 1.3.3 + '@types/pbf': 3.0.4 + '@types/supercluster': 7.1.2 + earcut: 2.2.4 + geojson-vt: 3.2.1 + gl-matrix: 3.4.3 + global-prefix: 3.0.0 + kdbush: 4.0.2 + murmurhash-js: 1.0.0 + pbf: 3.2.1 + potpack: 2.0.0 + quickselect: 2.0.0 + supercluster: 8.0.1 + tinyqueue: 2.0.3 + vt-pbf: 3.1.3 + dev: false + /markdown-it@13.0.1: resolution: {integrity: sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==} hasBin: true @@ -13561,6 +14072,11 @@ packages: engines: {node: '>=6'} dev: true + /mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: true + /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} @@ -13588,7 +14104,6 @@ packages: /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true /minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} @@ -13725,6 +14240,10 @@ packages: object-assign: 4.1.1 dev: false + /murmurhash-js@1.0.0: + resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==} + dev: false + /mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true @@ -13797,7 +14316,7 @@ packages: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /node-abort-controller@3.1.1: @@ -13870,6 +14389,13 @@ packages: path-key: 3.1.1 dev: true + /npm-run-path@5.1.0: + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: true + /nth-check@1.0.2: resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} dependencies: @@ -13929,12 +14455,16 @@ packages: /object-inspect@1.12.2: resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + dev: true + /object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 + call-bind: 1.0.5 + define-properties: 1.2.1 /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} @@ -13945,7 +14475,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.4 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -13972,9 +14502,9 @@ packages: engines: {node: '>= 0.8'} dependencies: array.prototype.reduce: 1.0.5 - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /object.hasown@1.1.2: @@ -14035,6 +14565,13 @@ packages: mimic-fn: 2.1.0 dev: true + /onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + dependencies: + mimic-fn: 4.0.0 + dev: true + /open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} @@ -14044,16 +14581,26 @@ packages: is-wsl: 2.2.0 dev: true - /optionator@0.9.1: - resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + /open@9.1.0: + resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} + engines: {node: '>=14.16'} + dependencies: + default-browser: 4.0.0 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + is-wsl: 2.2.0 + dev: true + + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - word-wrap: 1.2.4 dev: true /ora@5.4.1: @@ -14183,7 +14730,7 @@ packages: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /parent-module@1.0.1: @@ -14245,7 +14792,7 @@ packages: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /path-browserify@1.0.1: @@ -14277,6 +14824,11 @@ packages: engines: {node: '>=8'} dev: true + /path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: true + /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} @@ -14304,6 +14856,14 @@ packages: resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} dev: true + /pbf@3.2.1: + resolution: {integrity: sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==} + hasBin: true + dependencies: + ieee754: 1.2.1 + resolve-protobuf-schema: 2.1.0 + dev: false + /peek-stream@1.1.3: resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} dependencies: @@ -14813,12 +15373,16 @@ packages: resolution: {integrity: sha512-tlkBdypJuvK/s00n4EiQjwYVfuuZv6vt8BF3g1ooIQa2Gz9Vz80p8q3qsPLZ0V5ErGRy6i3Q4fWC9TDzR7GNRQ==} dev: false - /posthog-js@1.85.3: - resolution: {integrity: sha512-RHWLDamFU1k4SjolS/DWr8tYbuWQaJUJywxlKTUJp/ESIe9bJz9SkWuDNqgTV58fJnxdjCCtD89o+gMimfOSGw==} + /posthog-js@1.85.4: + resolution: {integrity: sha512-V2pwCcKb1MHFozVqAi2nYu4b3h/+QpP0NrN2kyxzp/v2tcVZXLm02qAAgAremVyP6WAX18pqjF6MvlKRjP87RA==} dependencies: fflate: 0.4.8 dev: false + /potpack@2.0.0: + resolution: {integrity: sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==} + dev: false + /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} @@ -15077,6 +15641,10 @@ packages: prosemirror-transform: 1.7.1 dev: false + /protocol-buffers-schema@3.6.0: + resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==} + dev: false + /proxy-addr@2.0.7: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} @@ -15194,6 +15762,10 @@ packages: engines: {node: '>=10'} dev: false + /quickselect@2.0.0: + resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==} + dev: false + /ramda@0.29.0: resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} dev: true @@ -15931,7 +16503,7 @@ packages: '@types/react': 16.14.34 react: 16.14.0 react-style-singleton: 2.2.1(@types/react@16.14.34)(react@16.14.0) - tslib: 2.4.1 + tslib: 2.6.2 dev: true /react-remove-scroll@2.5.5(@types/react@16.14.34)(react@16.14.0): @@ -16004,7 +16576,7 @@ packages: get-nonce: 1.0.1 invariant: 2.2.4 react: 16.14.0 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /react-syntax-highlighter@15.5.0(react@16.14.0): @@ -16190,7 +16762,7 @@ packages: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /recast@0.23.4: @@ -16225,6 +16797,18 @@ packages: '@babel/runtime': 7.22.10 dev: false + /reflect.getprototypeof@1.0.4: + resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + which-builtin-type: 1.1.3 + dev: true + /refractor@3.6.0: resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} dependencies: @@ -16257,12 +16841,16 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.1.4 + define-properties: 1.2.1 functions-have-names: 1.2.3 - /regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 dev: true /regexpu-core@5.3.2: @@ -16398,6 +16986,12 @@ packages: engines: {node: '>=8'} dev: true + /resolve-protobuf-schema@2.1.0: + resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} + dependencies: + protocol-buffers-schema: 3.6.0 + dev: false + /resolve.exports@1.1.0: resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} engines: {node: '>=10'} @@ -16503,6 +17097,13 @@ packages: '@babel/runtime': 7.22.10 dev: false + /run-applescript@5.0.0: + resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} + engines: {node: '>=12'} + dependencies: + execa: 5.1.1 + dev: true + /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -16528,7 +17129,17 @@ packages: /rxjs@7.5.7: resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==} dependencies: - tslib: 2.4.1 + tslib: 2.6.2 + dev: true + + /safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + isarray: 2.0.5 dev: true /safe-buffer@5.1.2: @@ -16541,8 +17152,8 @@ packages: /safe-regex-test@1.0.0: resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 dev: true @@ -16708,11 +17319,39 @@ packages: resolution: {integrity: sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==} dev: true + /set-function-length@1.1.1: + resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.0 + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.0 + dev: true + /set-harmonic-interval@1.0.1: resolution: {integrity: sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==} engines: {node: '>=6.9'} dev: false + /set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + dev: false + /setimmediate@1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} dev: false @@ -16747,7 +17386,7 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 object-inspect: 1.12.2 /signal-exit@3.0.7: @@ -16804,6 +17443,28 @@ packages: is-fullwidth-code-point: 3.0.0 dev: true + /sort-asc@0.2.0: + resolution: {integrity: sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==} + engines: {node: '>=0.10.0'} + dev: false + + /sort-desc@0.2.0: + resolution: {integrity: sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==} + engines: {node: '>=0.10.0'} + dev: false + + /sort-object@3.0.3: + resolution: {integrity: sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==} + engines: {node: '>=0.10.0'} + dependencies: + bytewise: 1.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + sort-asc: 0.2.0 + sort-desc: 0.2.0 + union-value: 1.0.1 + dev: false + /source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} @@ -16893,6 +17554,13 @@ packages: resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} dev: true + /split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + dev: false + /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true @@ -17081,20 +17749,45 @@ packages: side-channel: 1.0.4 dev: true + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + /string.prototype.trimend@1.0.5: resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /string.prototype.trimstart@1.0.5: resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /string_decoder@1.1.1: @@ -17149,6 +17842,11 @@ packages: engines: {node: '>=6'} dev: true + /strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: true + /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -17207,6 +17905,12 @@ packages: ts-interface-checker: 0.1.13 dev: true + /supercluster@8.0.1: + resolution: {integrity: sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==} + dependencies: + kdbush: 4.0.2 + dev: false + /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -17283,21 +17987,18 @@ packages: resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} dev: true + /synckit@0.8.5: + resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} + engines: {node: ^14.18.0 || >=16.0.0} + dependencies: + '@pkgr/utils': 2.4.2 + tslib: 2.6.2 + dev: true + /tabbable@6.1.1: resolution: {integrity: sha512-4kl5w+nCB44EVRdO0g/UGoOp3vlwgycUVtkk/7DPyeLZUCuNFFKCFG6/t/DgHLrUPHjrZg6s5tNm+56Q2B0xyg==} dev: false - /table@6.8.1: - resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} - engines: {node: '>=10.0.0'} - dependencies: - ajv: 8.11.0 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - dev: true - /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} @@ -17477,12 +18178,21 @@ packages: engines: {node: '>=6'} dev: false + /tinyqueue@2.0.3: + resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + dev: false + /tippy.js@6.3.7: resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} dependencies: '@popperjs/core': 2.11.6 dev: false + /titleize@3.0.0: + resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} + engines: {node: '>=12'} + dev: true + /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -17636,6 +18346,10 @@ packages: /tslib@2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + dev: true + /tsutils@3.21.0(typescript@4.9.5): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} @@ -17719,6 +18433,44 @@ packages: media-typer: 0.3.0 mime-types: 2.1.35 + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + is-typed-array: 1.1.12 + dev: true + /typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: @@ -17735,6 +18487,16 @@ packages: hasBin: true dev: true + /typewise-core@1.2.0: + resolution: {integrity: sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==} + dev: false + + /typewise@1.0.3: + resolution: {integrity: sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==} + dependencies: + typewise-core: 1.2.0 + dev: false + /ua-parser-js@0.7.32: resolution: {integrity: sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==} dev: false @@ -17754,7 +18516,7 @@ packages: /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -17795,6 +18557,16 @@ packages: vfile: 4.2.1 dev: false + /union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + dev: false + /uniq@1.0.1: resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==} dev: true @@ -17914,7 +18686,7 @@ packages: dependencies: '@types/react': 16.14.34 react: 16.14.0 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /use-composed-ref@1.3.0(react@16.14.0): @@ -17996,7 +18768,7 @@ packages: '@types/react': 16.14.34 detect-node-es: 1.1.0 react: 16.14.0 - tslib: 2.4.1 + tslib: 2.6.2 dev: true /use-sync-external-store@1.2.0(react@16.14.0): @@ -18014,8 +18786,8 @@ packages: /util.promisify@1.0.1: resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: - define-properties: 1.1.4 - es-abstract: 1.20.4 + define-properties: 1.2.1 + es-abstract: 1.22.3 has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.4 dev: true @@ -18052,10 +18824,6 @@ packages: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} dev: true - /v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - dev: true - /v8-to-istanbul@9.0.1: resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} @@ -18104,6 +18872,14 @@ packages: vfile-message: 2.0.4 dev: false + /vt-pbf@3.1.3: + resolution: {integrity: sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==} + dependencies: + '@mapbox/point-geometry': 0.1.0 + '@mapbox/vector-tile': 1.3.1 + pbf: 3.2.1 + dev: false + /w3c-keyname@2.2.6: resolution: {integrity: sha512-f+fciywl1SJEniZHD6H+kUO8gOnwIr7f4ijKA6+ZvJFjeGi1r4PDLl53Ayud9O/rk64RqgoQine0feoeOU0kXg==} dev: false @@ -18342,6 +19118,24 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 + /which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.0 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.13 + dev: true + /which-collection@1.0.1: resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} dependencies: @@ -18354,23 +19148,32 @@ packages: resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} dev: true + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + /which-typed-array@1.1.9: resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true dependencies: isexe: 2.0.0 - dev: true /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} @@ -18388,11 +19191,6 @@ packages: resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==} dev: true - /word-wrap@1.2.4: - resolution: {integrity: sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==} - engines: {node: '>=0.10.0'} - dev: true - /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true diff --git a/posthog/api/decide.py b/posthog/api/decide.py index c8577580e7377..1f173bdc39016 100644 --- a/posthog/api/decide.py +++ b/posthog/api/decide.py @@ -1,28 +1,27 @@ -from random import random import re +from random import random from typing import Any, Dict, List, Optional, Union from urllib.parse import urlparse -from posthog.database_healthcheck import DATABASE_FOR_FLAG_MATCHING -from posthog.metrics import LABEL_TEAM_ID -from posthog.models.feature_flag.flag_analytics import increment_request_count -from posthog.models.filters.mixins.utils import process_bool import structlog +from django.conf import settings from django.http import HttpRequest, JsonResponse from django.views.decorators.csrf import csrf_exempt -from django.conf import settings +from prometheus_client import Counter from rest_framework import status from sentry_sdk import capture_exception from statshog.defaults.django import statsd -from prometheus_client import Counter - from posthog.api.geoip import get_geoip_properties from posthog.api.utils import get_project_id, get_token +from posthog.database_healthcheck import DATABASE_FOR_FLAG_MATCHING from posthog.exceptions import RequestParsingError, generate_exception_response from posthog.logging.timing import timed +from posthog.metrics import LABEL_TEAM_ID from posthog.models import Team, User from posthog.models.feature_flag import get_all_feature_flags +from posthog.models.feature_flag.flag_analytics import increment_request_count +from posthog.models.filters.mixins.utils import process_bool from posthog.models.utils import execute_with_timeout from posthog.plugins.site import get_decide_site_apps from posthog.utils import ( @@ -222,6 +221,9 @@ def get_decide(request: HttpRequest): else False ) + if settings.NEW_ANALYTICS_CAPTURE_TEAM_IDS and str(team.id) in settings.NEW_ANALYTICS_CAPTURE_TEAM_IDS: + response["analytics"] = {"endpoint": settings.NEW_ANALYTICS_CAPTURE_ENDPOINT} + if team.session_recording_opt_in and ( on_permitted_recording_domain(team, request) or not team.recording_domains ): diff --git a/posthog/api/survey.py b/posthog/api/survey.py index 6770994708bd1..6bb69a7ddddff 100644 --- a/posthog/api/survey.py +++ b/posthog/api/survey.py @@ -101,11 +101,11 @@ def validate_appearance(self, value): thank_you_message = value.get("thankYouMessageHeader") if thank_you_message and nh3.is_html(thank_you_message): - value["thankYouMessageHeader"] = nh3.clean(thank_you_message) + value["thankYouMessageHeader"] = nh3_clean_with_whitelist(thank_you_message) thank_you_description = value.get("thankYouMessageDescription") if thank_you_description and nh3.is_html(thank_you_description): - value["thankYouMessageDescription"] = nh3.clean(thank_you_description) + value["thankYouMessageDescription"] = nh3_clean_with_whitelist(thank_you_description) return value @@ -131,9 +131,9 @@ def validate_questions(self, value): description = raw_question.get("description") if nh3.is_html(question_text): - cleaned_question["question"] = nh3.clean(question_text) + cleaned_question["question"] = nh3_clean_with_whitelist(question_text) if description and nh3.is_html(description): - cleaned_question["description"] = nh3.clean(description) + cleaned_question["description"] = nh3_clean_with_whitelist(description) cleaned_questions.append(cleaned_question) @@ -345,3 +345,142 @@ def surveys(request: Request): ).data return cors_response(request, JsonResponse({"surveys": surveys})) + + +def nh3_clean_with_whitelist(to_clean: str): + + return nh3.clean( + to_clean, + link_rel="noopener", + tags={ + "a", + "abbr", + "acronym", + "area", + "article", + "aside", + "b", + "bdi", + "bdo", + "blockquote", + "br", + "caption", + "center", + "cite", + "code", + "col", + "colgroup", + "data", + "dd", + "del", + "details", + "dfn", + "div", + "dl", + "dt", + "em", + "figcaption", + "figure", + "footer", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "header", + "hgroup", + "hr", + "i", + "img", + "ins", + "kbd", + "kbd", + "li", + "map", + "mark", + "nav", + "ol", + "p", + "pre", + "q", + "rp", + "rt", + "rtc", + "ruby", + "s", + "samp", + "small", + "span", + "strike", + "strong", + "sub", + "summary", + "sup", + "table", + "tbody", + "td", + "th", + "thead", + "time", + "tr", + "tt", + "u", + "ul", + "var", + "wbr", + }, + attributes={ + "*": {"style", "lang", "title", "width", "height"}, + # below are mostly defaults to ammonia, but we need to add them explicitly + # because this python binding doesn't allow additive whitelisting + "a": {"href", "hreflang"}, + "bdo": {"dir"}, + "blockquote": {"cite"}, + "col": {"align", "char", "charoff", "span"}, + "colgroup": {"align", "char", "charoff", "span"}, + "del": {"cite", "datetime"}, + "hr": {"align", "size", "width"}, + "img": {"align", "alt", "height", "src", "width"}, + "ins": {"cite", "datetime"}, + "ol": {"start", "type"}, + "q": {"cite"}, + "table": {"align", "bgcolor", "border", "cellpadding", "cellspacing", "frame", "rules", "summary", "width"}, + "tbody": {"align", "char", "charoff", "valign"}, + "td": { + "abbr", + "align", + "axis", + "bgcolor", + "char", + "charoff", + "colspan", + "headers", + "height", + "nowrap", + "rowspan", + "scope", + "valign", + "width", + }, + "tfoot": {"align", "char", "charoff", "valign"}, + "th": { + "abbr", + "align", + "axis", + "bgcolor", + "char", + "charoff", + "colspan", + "headers", + "height", + "nowrap", + "rowspan", + "scope", + "valign", + "width", + }, + "thead": {"align", "char", "charoff", "valign"}, + "tr": {"align", "bgcolor", "char", "charoff", "valign"}, + }, + ) diff --git a/posthog/api/test/test_survey.py b/posthog/api/test/test_survey.py index b8983c0d4c5e9..568d745ffed18 100644 --- a/posthog/api/test/test_survey.py +++ b/posthog/api/test/test_survey.py @@ -1,10 +1,12 @@ from datetime import datetime, timedelta from unittest.mock import ANY +import pytest from rest_framework import status from django.core.cache import cache from django.test.client import Client +from posthog.api.survey import nh3_clean_with_whitelist from posthog.models.feedback.survey import Survey from posthog.test.base import ( @@ -1201,3 +1203,33 @@ def test_responses_count_zero_responses(self): data = response.json() self.assertEqual(data, {}) + + +@pytest.mark.parametrize( + "test_input,expected", + [ + ( + """ +
+
+ Your Image +
+
+

Help us stay sharp.

+
+ """, + """ +
+
+ Your Image +
+
+

Help us stay sharp.

+
+
""", + ), + (""" """, """ """), + ], +) +def test_nh3_clean_configuration(test_input, expected): + assert nh3_clean_with_whitelist(test_input).replace(" ", "") == expected.replace(" ", "") diff --git a/posthog/middleware.py b/posthog/middleware.py index 6953292a5a18b..b480580afad40 100644 --- a/posthog/middleware.py +++ b/posthog/middleware.py @@ -30,12 +30,11 @@ from posthog.metrics import LABEL_TEAM_ID from posthog.models import Action, Cohort, Dashboard, FeatureFlag, Insight, Team, User from posthog.rate_limit import DecideRateThrottle -from posthog.settings import SITE_URL +from posthog.settings import SITE_URL, DEBUG from posthog.settings.statsd import STATSD_HOST from posthog.user_permissions import UserPermissions -from .utils_cors import cors_response - from .auth import PersonalAPIKeyAuthentication +from .utils_cors import cors_response ALWAYS_ALLOWED_ENDPOINTS = [ "decide", @@ -49,6 +48,10 @@ "_health", ] +if DEBUG: + # /i/ is the new root path for capture endpoints + ALWAYS_ALLOWED_ENDPOINTS.append("i") + default_cookie_options = { "max_age": 365 * 24 * 60 * 60, # one year "expires": None, @@ -117,6 +120,8 @@ def process_view(self, request, callback, callback_args, callback_kwargs): # if super().process_view did not find a valid CSRF token, try looking for a personal API key if result is not None and PersonalAPIKeyAuthentication.find_key_with_source(request) is not None: return self._accept(request) + if DEBUG and request.path.split("/")[1] in ALWAYS_ALLOWED_ENDPOINTS: + return self._accept(request) return result def _accept(self, request): diff --git a/posthog/settings/__init__.py b/posthog/settings/__init__.py index 5f915f3c1d6f5..099e1812e5311 100644 --- a/posthog/settings/__init__.py +++ b/posthog/settings/__init__.py @@ -85,6 +85,9 @@ # Whether kea should be act in verbose mode KEA_VERBOSE_LOGGING = get_from_env("KEA_VERBOSE_LOGGING", False, type_cast=str_to_bool) +# MapLibre Style URL to configure map tile source +MAPLIBRE_STYLE_URL = get_from_env("MAPLIBRE_STYLE_URL", optional=True) + # Only written in specific scripts - do not use outside of them. PERSON_ON_EVENTS_OVERRIDE = get_from_env("PERSON_ON_EVENTS_OVERRIDE", optional=True, type_cast=str_to_bool) diff --git a/posthog/settings/ingestion.py b/posthog/settings/ingestion.py index bd9edbc6fb03c..b60206d101ae9 100644 --- a/posthog/settings/ingestion.py +++ b/posthog/settings/ingestion.py @@ -1,7 +1,8 @@ import os + import structlog -from posthog.settings.utils import get_from_env, get_list +from posthog.settings.utils import get_from_env, get_list, get_set from posthog.utils import str_to_bool logger = structlog.get_logger(__name__) @@ -32,3 +33,6 @@ REPLAY_RETENTION_DAYS_MIN = get_from_env("REPLAY_RETENTION_DAYS_MIN", type_cast=int, default=30) REPLAY_RETENTION_DAYS_MAX = get_from_env("REPLAY_RETENTION_DAYS_MAX", type_cast=int, default=90) + +NEW_ANALYTICS_CAPTURE_ENDPOINT = os.getenv("NEW_CAPTURE_ENDPOINT", "/i/v0/e/") +NEW_ANALYTICS_CAPTURE_TEAM_IDS = get_set(os.getenv("NEW_ANALYTICS_CAPTURE_TEAM_IDS", "")) diff --git a/posthog/settings/utils.py b/posthog/settings/utils.py index 150686df42ab6..6dd22dbf97cf8 100644 --- a/posthog/settings/utils.py +++ b/posthog/settings/utils.py @@ -1,5 +1,5 @@ import os -from typing import Any, Callable, List, Optional +from typing import Any, Callable, List, Optional, Set from django.core.exceptions import ImproperlyConfigured @@ -32,3 +32,9 @@ def get_list(text: str) -> List[str]: if not text: return [] return [item.strip() for item in text.split(",")] + + +def get_set(text: str) -> Set[str]: + if not text: + return set() + return {item.strip() for item in text.split(",")} diff --git a/posthog/settings/web.py b/posthog/settings/web.py index 8eee2e114e02a..b846a2486c5df 100644 --- a/posthog/settings/web.py +++ b/posthog/settings/web.py @@ -112,6 +112,10 @@ MIDDLEWARE.insert(0, "django_statsd.middleware.StatsdMiddleware") MIDDLEWARE.append("django_statsd.middleware.StatsdMiddlewareTimer") +if DEBUG: + # Used on local devenv to reverse-proxy all of /i/* to capture-rs on port 3000 + INSTALLED_APPS.append("revproxy") + # Append Enterprise Edition as an app if available try: from ee.apps import EnterpriseConfig # noqa: F401 diff --git a/posthog/templates/head.html b/posthog/templates/head.html index ed0d359faa014..7ca827ae15914 100644 --- a/posthog/templates/head.html +++ b/posthog/templates/head.html @@ -36,6 +36,11 @@ window.SENTRY_ENVIRONMENT = '{{ sentry_environment | escapejs }}'; {% endif %} +{% if js_maplibre_style_url %} + +{% endif %}