diff --git a/frontend/__snapshots__/queries-webvitals--web-vitals--dark.png b/frontend/__snapshots__/queries-webvitals--web-vitals--dark.png new file mode 100644 index 00000000000000..a27903d954d40a Binary files /dev/null and b/frontend/__snapshots__/queries-webvitals--web-vitals--dark.png differ diff --git a/frontend/__snapshots__/queries-webvitals--web-vitals--light.png b/frontend/__snapshots__/queries-webvitals--web-vitals--light.png new file mode 100644 index 00000000000000..b13819a0e8b44a Binary files /dev/null and b/frontend/__snapshots__/queries-webvitals--web-vitals--light.png differ diff --git a/frontend/__snapshots__/queries-webvitalspathbreakdown--web-vitals-path-breakdown--dark.png b/frontend/__snapshots__/queries-webvitalspathbreakdown--web-vitals-path-breakdown--dark.png new file mode 100644 index 00000000000000..d994cadd2a7df0 Binary files /dev/null and b/frontend/__snapshots__/queries-webvitalspathbreakdown--web-vitals-path-breakdown--dark.png differ diff --git a/frontend/__snapshots__/queries-webvitalspathbreakdown--web-vitals-path-breakdown--light.png b/frontend/__snapshots__/queries-webvitalspathbreakdown--web-vitals-path-breakdown--light.png new file mode 100644 index 00000000000000..35077006522e7a Binary files /dev/null and b/frontend/__snapshots__/queries-webvitalspathbreakdown--web-vitals-path-breakdown--light.png differ diff --git a/frontend/__snapshots__/scenes-app-web-analytics--web-analytics-dashboard--dark.png b/frontend/__snapshots__/scenes-app-web-analytics--web-analytics-dashboard--dark.png new file mode 100644 index 00000000000000..e49e21eb17170b Binary files /dev/null and b/frontend/__snapshots__/scenes-app-web-analytics--web-analytics-dashboard--dark.png differ diff --git a/frontend/__snapshots__/scenes-app-web-analytics--web-analytics-dashboard--light.png b/frontend/__snapshots__/scenes-app-web-analytics--web-analytics-dashboard--light.png new file mode 100644 index 00000000000000..9efe8bd719298a Binary files /dev/null and b/frontend/__snapshots__/scenes-app-web-analytics--web-analytics-dashboard--light.png differ diff --git a/frontend/__snapshots__/web-analytics-dashboard--web-analytics-dashboard--dark.png b/frontend/__snapshots__/web-analytics-dashboard--web-analytics-dashboard--dark.png new file mode 100644 index 00000000000000..e49e21eb17170b Binary files /dev/null and b/frontend/__snapshots__/web-analytics-dashboard--web-analytics-dashboard--dark.png differ diff --git a/frontend/__snapshots__/web-analytics-dashboard--web-analytics-dashboard--light.png b/frontend/__snapshots__/web-analytics-dashboard--web-analytics-dashboard--light.png new file mode 100644 index 00000000000000..9efe8bd719298a Binary files /dev/null and b/frontend/__snapshots__/web-analytics-dashboard--web-analytics-dashboard--light.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--browser--dark.png b/frontend/__snapshots__/web-analytics-tiles--browser--dark.png new file mode 100644 index 00000000000000..3188c20285aa9e Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--browser--dark.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--browser--light.png b/frontend/__snapshots__/web-analytics-tiles--browser--light.png new file mode 100644 index 00000000000000..11850867528d8f Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--browser--light.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--path--dark.png b/frontend/__snapshots__/web-analytics-tiles--path--dark.png new file mode 100644 index 00000000000000..c9e06472e87390 Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--path--dark.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--path--light.png b/frontend/__snapshots__/web-analytics-tiles--path--light.png new file mode 100644 index 00000000000000..33e50d2109f644 Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--path--light.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--referrer-domain--dark.png b/frontend/__snapshots__/web-analytics-tiles--referrer-domain--dark.png new file mode 100644 index 00000000000000..cef5f08691cf0b Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--referrer-domain--dark.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--referrer-domain--light.png b/frontend/__snapshots__/web-analytics-tiles--referrer-domain--light.png new file mode 100644 index 00000000000000..8dd3b9b239aa18 Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--referrer-domain--light.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--retention--dark.png b/frontend/__snapshots__/web-analytics-tiles--retention--dark.png new file mode 100644 index 00000000000000..aceedd35ce9b3d Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--retention--dark.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--retention--light.png b/frontend/__snapshots__/web-analytics-tiles--retention--light.png new file mode 100644 index 00000000000000..45cf2557b4a166 Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--retention--light.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--world-map--dark.png b/frontend/__snapshots__/web-analytics-tiles--world-map--dark.png new file mode 100644 index 00000000000000..1293654e366267 Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--world-map--dark.png differ diff --git a/frontend/__snapshots__/web-analytics-tiles--world-map--light.png b/frontend/__snapshots__/web-analytics-tiles--world-map--light.png new file mode 100644 index 00000000000000..8f9642c00cb4f5 Binary files /dev/null and b/frontend/__snapshots__/web-analytics-tiles--world-map--light.png differ diff --git a/frontend/src/lib/utils/apiHost.ts b/frontend/src/lib/utils/apiHost.ts index 52406be14dc266..d8ca0432a2bec7 100644 --- a/frontend/src/lib/utils/apiHost.ts +++ b/frontend/src/lib/utils/apiHost.ts @@ -16,6 +16,9 @@ export function liveEventsHostOrigin(): string | null { return 'https://live.eu.posthog.com' } else if (appOrigin === 'https://app.dev.posthog.dev') { return 'https://live.dev.posthog.dev' + } else if (process.env.STORYBOOK) { + return 'http://localhost:6006' } + return 'http://localhost:8666' } diff --git a/frontend/src/queries/examples.ts b/frontend/src/queries/examples.ts index 80d85672b549ab..046d6c9ba0f898 100644 --- a/frontend/src/queries/examples.ts +++ b/frontend/src/queries/examples.ts @@ -1,4 +1,7 @@ // This file contains example queries, used in storybook and in the /query interface. +import { RETENTION_FIRST_TIME } from 'lib/constants' +import { WEB_VITALS_THRESHOLDS } from 'scenes/web-analytics/webAnalyticsLogic' + import { defaultDataTableColumns } from '~/queries/nodes/DataTable/utils' import { ActionsNode, @@ -18,13 +21,22 @@ import { RetentionQuery, StickinessQuery, TrendsQuery, + WebStatsBreakdown, + WebVitalsMetric, + WebVitalsPathBreakdownQuery, + WebVitalsPercentile, + WebVitalsQuery, } from '~/queries/schema/schema-general' import { + BaseMathType, ChartDisplayType, FilterLogicalOperator, + InsightType, PropertyFilterType, PropertyGroupFilter, + PropertyMathType, PropertyOperator, + RetentionPeriod, StepOrderValue, } from '~/types' @@ -352,6 +364,150 @@ const Hoggonacci: HogQuery = { } return fibonacci(16);`, } + +const WebVitals: WebVitalsQuery = { + kind: NodeKind.WebVitalsQuery, + properties: [], + dateRange: { + date_from: '-7d', + }, + source: { + kind: NodeKind.TrendsQuery, + dateRange: { + date_from: '-7d', + }, + interval: 'day', + series: (['INP', 'LCP', 'CLS', 'FCP'] as WebVitalsMetric[]).flatMap((name) => + [PropertyMathType.P75, PropertyMathType.P90, PropertyMathType.P99].map((math) => ({ + kind: NodeKind.EventsNode, + event: '$web_vitals', + name: '$web_vitals', + custom_name: name, + math: math, + math_property: `$web_vitals_${name}_value`, + })) + ), + trendsFilter: { display: ChartDisplayType.ActionsLineGraph }, + filterTestAccounts, + }, +} + +const WebVitalsPathBreakdown: WebVitalsPathBreakdownQuery = { + kind: NodeKind.WebVitalsPathBreakdownQuery, + properties: [], + dateRange: { + date_from: '-7d', + }, + filterTestAccounts, + percentile: 'p90' as WebVitalsPercentile, + metric: 'CLS' as WebVitalsMetric, + doPathCleaning: true, + thresholds: [WEB_VITALS_THRESHOLDS['CLS'].good, WEB_VITALS_THRESHOLDS['CLS'].poor], +} + +const WebAnalyticsReferrerDomain: DataTableNode = { + kind: NodeKind.DataTableNode, + source: { + kind: NodeKind.WebStatsTableQuery, + properties: [], + breakdownBy: WebStatsBreakdown.InitialReferringDomain, + dateRange: { + date_from: '-14d', + date_to: null, + }, + compareFilter: { compare: false }, + limit: 10, + filterTestAccounts: false, + conversionGoal: null, + }, +} + +const WebAnalyticsPath: DataTableNode = { + kind: NodeKind.DataTableNode, + source: { + kind: NodeKind.WebStatsTableQuery, + properties: [], + breakdownBy: WebStatsBreakdown.Page, + dateRange: { + date_from: '-14d', + date_to: null, + }, + compareFilter: { compare: false }, + limit: 10, + filterTestAccounts: false, + conversionGoal: null, + }, +} + +const WebAnalyticsBrowser: DataTableNode = { + kind: NodeKind.DataTableNode, + source: { + kind: NodeKind.WebStatsTableQuery, + properties: [], + breakdownBy: WebStatsBreakdown.Browser, + dateRange: { + date_from: '-14d', + date_to: null, + }, + compareFilter: { compare: false }, + limit: 10, + filterTestAccounts: false, + conversionGoal: null, + }, +} + +const WebAnalyticsWorldMap: InsightVizNode = { + kind: NodeKind.InsightVizNode, + source: { + kind: NodeKind.TrendsQuery, + breakdownFilter: { + breakdown: '$geoip_country_code', + breakdown_type: 'event', + }, + dateRange: { + date_from: '-14d', + date_to: null, + }, + series: [ + { + event: '$pageview', + name: 'Pageview', + kind: NodeKind.EventsNode, + math: BaseMathType.MonthlyActiveUsers, // Should be DAU, but it's not supported yet + }, + ], + trendsFilter: { display: ChartDisplayType.WorldMap }, + filterTestAccounts: false, + properties: [], + }, +} + +const WebAnalyticsRetention: InsightVizNode = { + kind: NodeKind.InsightVizNode, + source: { + kind: NodeKind.RetentionQuery, + properties: [], + dateRange: { + date_from: '-14d', + date_to: null, + }, + filterTestAccounts: false, + retentionFilter: { + retentionType: RETENTION_FIRST_TIME, + retentionReference: 'total', + totalIntervals: 8, + period: RetentionPeriod.Week, + }, + }, + vizSpecificOptions: { + [InsightType.RETENTION]: { + hideLineGraph: true, + hideSizeColumn: false, + useSmallLayout: false, + }, + }, +} + /* a subset of examples including only those we can show all users and that don't use HogQL */ export const queryExamples: Record = { Events, @@ -384,6 +540,13 @@ export const queryExamples: Record = { kind: NodeKind.InsightVizNode, source: InsightLifecycleQuery, } as InsightVizNode, + WebVitals, + WebVitalsPathBreakdown, + WebAnalyticsWorldMap, + WebAnalyticsReferrerDomain, + WebAnalyticsPath, + WebAnalyticsBrowser, + WebAnalyticsRetention, } export const stringifiedQueryExamples: Record = Object.fromEntries( diff --git a/frontend/src/queries/nodes/WebVitals/WebVitals.stories.tsx b/frontend/src/queries/nodes/WebVitals/WebVitals.stories.tsx new file mode 100644 index 00000000000000..6dc8ee2cf703b0 --- /dev/null +++ b/frontend/src/queries/nodes/WebVitals/WebVitals.stories.tsx @@ -0,0 +1,50 @@ +import { Meta, StoryFn, StoryObj } from '@storybook/react' + +import { mswDecorator } from '~/mocks/browser' +import { examples } from '~/queries/examples' +import { Query } from '~/queries/Query/Query' + +import webVitals from './__mocks__/WebVitals.json' +import webVitalsTrends from './__mocks__/WebVitalsTrends.json' + +type Story = StoryObj +const meta: Meta = { + title: 'Queries/WebVitals', + component: Query, + parameters: { + layout: 'fullscreen', + viewMode: 'story', + testOptions: { + waitForLoadersToDisappear: true, + waitForSelector: '[data-attr=trend-line-graph] > canvas', + }, + }, + decorators: [ + mswDecorator({ + post: { + '/api/environments/:team_id/query/': (req) => { + if ((req.body as any).query.kind === 'WebVitalsQuery') { + return [200, webVitals] + } else if ((req.body as any).query.kind === 'TrendsQuery') { + return [200, webVitalsTrends] + } + }, + }, + }), + ], +} +export default meta + +// NOTE: See InsightCard.scss to see why we need this wrapper +const QueryTemplate: StoryFn = (args) => { + return ( +
+
+ +
+
+ ) +} + +export const WebVitals: Story = QueryTemplate.bind({}) +WebVitals.args = { query: examples['WebVitals'] } diff --git a/frontend/src/queries/nodes/WebVitals/WebVitalsPathBreakdown.stories.tsx b/frontend/src/queries/nodes/WebVitals/WebVitalsPathBreakdown.stories.tsx new file mode 100644 index 00000000000000..1e616d86ea1266 --- /dev/null +++ b/frontend/src/queries/nodes/WebVitals/WebVitalsPathBreakdown.stories.tsx @@ -0,0 +1,34 @@ +import { Meta, StoryFn, StoryObj } from '@storybook/react' + +import { mswDecorator } from '~/mocks/browser' +import { examples } from '~/queries/examples' +import { Query } from '~/queries/Query/Query' + +import webVitalsPathBreakdown from './__mocks__/WebVitalsPathBreakdown.json' + +type Story = StoryObj +const meta: Meta = { + title: 'Queries/WebVitalsPathBreakdown', + component: Query, + parameters: { + layout: 'fullscreen', + viewMode: 'story', + }, + decorators: [ + mswDecorator({ + post: { + '/api/environments/:team_id/query/': (req) => { + if ((req.body as any).query.kind === 'WebVitalsPathBreakdownQuery') { + return [200, webVitalsPathBreakdown] + } + }, + }, + }), + ], +} +export default meta + +const QueryTemplate: StoryFn = (args) => + +export const WebVitalsPathBreakdown: Story = QueryTemplate.bind({}) +WebVitalsPathBreakdown.args = { query: examples['WebVitalsPathBreakdown'] } diff --git a/frontend/src/queries/nodes/WebVitals/WebVitalsPathBreakdown.tsx b/frontend/src/queries/nodes/WebVitals/WebVitalsPathBreakdown.tsx index b2e3a493b77e38..125a5ddb39dee7 100644 --- a/frontend/src/queries/nodes/WebVitals/WebVitalsPathBreakdown.tsx +++ b/frontend/src/queries/nodes/WebVitals/WebVitalsPathBreakdown.tsx @@ -39,24 +39,22 @@ export function WebVitalsPathBreakdown(props: { const webVitalsQueryResponse = response as WebVitalsPathBreakdownQueryResponse | undefined return ( -
-
-
-
- -
-
-
- -
-
-
- -
+
+
+
+ +
+
+
+ +
+
+
+
) @@ -157,7 +155,7 @@ const Content = ({
{path} diff --git a/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitals.json b/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitals.json new file mode 100644 index 00000000000000..1c35a990862e88 --- /dev/null +++ b/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitals.json @@ -0,0 +1,1525 @@ +{ + "cache_key": "cache_4a86df907aa3aae8f01a832303eaffee", + "cache_target_age": "2025-01-20T21:36:14.625758Z", + "calculation_trigger": null, + "error": "", + "hasMore": false, + "hogql": "SELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.75)(properties.$web_vitals_INP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.9)(properties.$web_vitals_INP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.99)(properties.$web_vitals_INP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.75)(properties.$web_vitals_LCP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.9)(properties.$web_vitals_LCP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.99)(properties.$web_vitals_LCP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.75)(properties.$web_vitals_CLS_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.9)(properties.$web_vitals_CLS_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.99)(properties.$web_vitals_CLS_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.75)(properties.$web_vitals_FCP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.9)(properties.$web_vitals_FCP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.99)(properties.$web_vitals_FCP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000", + "is_cached": true, + "last_refresh": "2025-01-20T21:21:14.625758Z", + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [ + { + "channel_type": "AI", + "combiner": "AND", + "id": "b6332cb7-a32f-4a62-929e-54dc5c37ba1d", + "items": [ + { + "id": "90f32f03-2a30-4278-9869-c1f99da6dbe9", + "key": "referring_domain", + "op": "exact", + "value": ["www.perplexity.ai", "chat.openai.com"] + } + ] + }, + { + "channel_type": "Newsletter", + "combiner": "OR", + "id": "eb1729b9-35a8-4013-bf1b-83bf107feb1f", + "items": [ + { + "id": "40b11644-51bd-49ac-a99e-82fc8f734eda", + "key": "referring_domain", + "op": "icontains", + "value": ["substack.com"] + }, + { + "id": "e048a56a-eba8-4e59-ad20-cda77883594c", + "key": "utm_source", + "op": "exact", + "value": ["substack", "posthog-newsletter"] + } + ] + } + ], + "dataWarehouseEventsModifiers": [], + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T21:24:14.625758Z", + "query_status": null, + "results": [ + { + "data": [ + 208, 208, 264, 192, 208, 224, 204, 216, 240, 240, 240, 216, 224, 224, 216, 224, 224, 232, 224, 232, 224, + 232, 248, 224, 256 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 5644, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 0, + "name": "$web_vitals", + "custom_name": "INP", + "math": "p75", + "math_property": "$web_vitals_INP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 448, 404, 511.2000000000003, 356, 431.2000000000003, 489.60000000000036, 377.60000000000036, 416, 440, + 482.40000000000055, 416, 408, 448, 400, 384, 416, 392.8000000000011, 440, 432, 462.39999999999964, 448, + 494.39999999999964, 464, 423.2000000000007, 432 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 11010.400000000003, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 1, + "name": "$web_vitals", + "custom_name": "INP", + "math": "p90", + "math_property": "$web_vitals_INP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 5398.399999999961, 1952, 2316.56, 1652, 1420.7199999999948, 2435.119999999997, 1683.039999999999, + 2231.199999999998, 1550.0800000000017, 3412.4799999999886, 2101.1999999999953, 2379.8399999999965, + 2557.4400000000023, 1847.1199999999808, 1818.3999999999978, 2071.9999999999964, 2112.3199999999924, + 2777.679999999964, 2148.8000000000175, 1759.5200000000004, 2920, 3613.919999999993, 3326.0800000000017, + 1874.000000000011, 9213.120000000003 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 66573.03999999989, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 2, + "name": "$web_vitals", + "custom_name": "INP", + "math": "p99", + "math_property": "$web_vitals_INP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 3568.3499999940395, 3443.7000000029802, 3592.599999964237, 3894, 4329.09999999986, 4734.20000000298, + 4282, 4139.94999996433, 4264.300000190735, 4143.149999976158, 3901.1250000819564, 3526.3000000715256, + 3654.0250000117812, 3266.899999976158, 3353.25, 3507.0999999940395, 3546.674999978393, + 3268.6250000116415, 3200.4250000417233, 3435.550000011921, 3200.699999988079, 3181.5250001102686, + 2914.599999997765, 3018.600000011851, 3276.899999976158 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 90643.65000035858, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 3, + "name": "$web_vitals", + "custom_name": "LCP", + "math": "p75", + "math_property": "$web_vitals_LCP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 6898.620000004768, 6066.000000011923, 6645.500000023842, 6769.779999995231, 7112.830000042919, + 7462.4000000000015, 6677.639999991656, 6898.400000035763, 6752.800000011921, 6705.00000000447, + 6486.459999992977, 5268.1800000095345, 6797.099999913574, 5111.9200000099845, 5309.259999984503, + 5264.180000057258, 5798.550000023795, 5235.170000028617, 5276.9900000005955, 5794.180000010878, + 5524.299999904635, 5508.330000010785, 4782.939999985698, 4954.930000007152, 4180 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 150753.94000006368, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 4, + "name": "$web_vitals", + "custom_name": "LCP", + "math": "p90", + "math_property": "$web_vitals_LCP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 14972.459999999386, 14492.88199998917, 13286.37200002668, 15147.819999982084, 16098.172000016257, + 26791.27199999589, 14126.716000000099, 20172.29000000813, 17852.71999999286, 11359.888000051946, + 12998.47299998641, 14067.57600003465, 52928.860999994795, 13572.531999990822, 14238.465999998729, + 12435.940000006241, 13710.510000000026, 12685.827999962832, 14133.321000098722, 13834.243999979431, + 12811.096000001504, 15165.98199999153, 13037.81200000761, 10969.529999996641, 12637.507999974516 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 403528.27100008697, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 5, + "name": "$web_vitals", + "custom_name": "LCP", + "math": "p99", + "math_property": "$web_vitals_LCP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 0.11738345941473857, 0.1116777414930812, 0.11148180621126402, 0.11360822397057502, 0.12124307699700262, + 0.11431743843387039, 0.13034146384075265, 0.1096454932010398, 0.1032171049025754, 0.10163373737576842, + 0.11356780090728788, 0.11749907891439637, 0.10069782265665575, 0.11132465965808434, 0.11609873675228503, + 0.11423630178971465, 0.11387545309224631, 0.11051331689904792, 0.11757407576451785, 0.11846210741136749, + 0.1174824948671285, 0.11407278675268621, 0.12593172867144742, 0.1107074813984988, 0.10306043138940943 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 2.8396538227654418, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 6, + "name": "$web_vitals", + "custom_name": "CLS", + "math": "p75", + "math_property": "$web_vitals_CLS_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 0.2031501825438871, 0.201093031524413, 0.2095842521407585, 0.19531584873962426, 0.20945469267807423, + 0.1936306164906326, 0.22791121575642423, 0.19295741909908207, 0.18040384491341646, 0.1753472708551133, + 0.20097933723786104, 0.21832177647674206, 0.1938938316000412, 0.20471376133148966, 0.21059146347490743, + 0.228061743698989, 0.2180621190651727, 0.19926843375761277, 0.2047986676284671, 0.21823820057544063, + 0.20621692938858277, 0.2026768616180266, 0.22724847760596295, 0.22080761700372045, 0.08 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 5.183605767439534, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 7, + "name": "$web_vitals", + "custom_name": "CLS", + "math": "p90", + "math_property": "$web_vitals_CLS_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 0.7394310573092746, 0.7269385797236176, 0.5946637560324624, 0.5680860192279006, 0.9944294789929173, + 0.7159124289809393, 0.6872291755897353, 0.4988799234859136, 0.6787006393942361, 0.48761113863982797, + 0.6202096597700668, 0.785384399989555, 0.6679965775660852, 0.6533283073421113, 0.6105931010628081, + 0.6971827577627036, 0.6251693892756585, 0.5720963723483418, 0.6307351475102454, 0.7739021015881435, + 0.7270702309690661, 0.5897405474961678, 0.6549496098731046, 0.723335109961903, 0.6502020234701896 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 16.673777533362976, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 8, + "name": "$web_vitals", + "custom_name": "CLS", + "math": "p99", + "math_property": "$web_vitals_CLS_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 2160.075000000419, 2067.29999999702, 2132.9249999821186, 3711.050000011921, 2681.300000011921, + 2856.5500000864267, 2687.5500000000466, 2552.1999998569954, 2638.7750000022356, 2657.674999985844, 2516, + 2241.875, 2349.2499999701977, 2145.1750000000466, 2267, 2216.325000006705, 2307.699999999997, + 2036.9000000059605, 2043.0999999986961, 2206.900000095367, 2034.2999999988824, 2077, 1792.7999999523165, + 1897.7749999994412, 1894.0500000379977 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 58171.550000000556, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 9, + "name": "$web_vitals", + "custom_name": "FCP", + "math": "p75", + "math_property": "$web_vitals_FCP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 3773.420000006258, 3453.580000007153, 3723.789999967813, 8727.299999982119, 4001.839999990166, + 4394.720000004774, 4071.199999988079, 3910.500000014901, 4185.7499999761585, 4337.560000020264, + 3982.5000000223527, 3558.52000001073, 4610.969999999973, 3321.9600002288844, 3675.659999990464, + 3681.269999994338, 3831.880000014418, 3275.0599999636406, 3335.1900000002324, 3619.7999999999997, + 3387.140000152588, 3392.5600001156336, 2990.020000010729, 3085.5899999588732, 987 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 97416.79000042293, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 10, + "name": "$web_vitals", + "custom_name": "FCP", + "math": "p90", + "math_property": "$web_vitals_FCP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + }, + { + "data": [ + 11201.653999854323, 9744.151999933722, 8339.33600000262, 39768.30000000001, 10892.488000000027, + 15057.085999999925, 14184.98000000121, 17738.50499999999, 17556.822000021937, 9648.784000007943, + 12830.551999999983, 12189.56299999998, 43110.44300001102, 12593.301000013951, 20938.43999999985, + 10767.26799999664, 12188.968000001318, 11859.971999999949, 9838.580999980724, 11323.011999999566, + 10598.827999984396, 14159.835999990933, 11205.70400000571, 7239.854999985324, 12134.85680000143 + ], + "labels": [ + "19-Jan-2025 13:00", + "19-Jan-2025 14:00", + "19-Jan-2025 15:00", + "19-Jan-2025 16:00", + "19-Jan-2025 17:00", + "19-Jan-2025 18:00", + "19-Jan-2025 19:00", + "19-Jan-2025 20:00", + "19-Jan-2025 21:00", + "19-Jan-2025 22:00", + "19-Jan-2025 23:00", + "20-Jan-2025 00:00", + "20-Jan-2025 01:00", + "20-Jan-2025 02:00", + "20-Jan-2025 03:00", + "20-Jan-2025 04:00", + "20-Jan-2025 05:00", + "20-Jan-2025 06:00", + "20-Jan-2025 07:00", + "20-Jan-2025 08:00", + "20-Jan-2025 09:00", + "20-Jan-2025 10:00", + "20-Jan-2025 11:00", + "20-Jan-2025 12:00", + "20-Jan-2025 13:00" + ], + "days": [ + "2025-01-19 13:00:00", + "2025-01-19 14:00:00", + "2025-01-19 15:00:00", + "2025-01-19 16:00:00", + "2025-01-19 17:00:00", + "2025-01-19 18:00:00", + "2025-01-19 19:00:00", + "2025-01-19 20:00:00", + "2025-01-19 21:00:00", + "2025-01-19 22:00:00", + "2025-01-19 23:00:00", + "2025-01-20 00:00:00", + "2025-01-20 01:00:00", + "2025-01-20 02:00:00", + "2025-01-20 03:00:00", + "2025-01-20 04:00:00", + "2025-01-20 05:00:00", + "2025-01-20 06:00:00", + "2025-01-20 07:00:00", + "2025-01-20 08:00:00", + "2025-01-20 09:00:00", + "2025-01-20 10:00:00", + "2025-01-20 11:00:00", + "2025-01-20 12:00:00", + "2025-01-20 13:00:00" + ], + "count": 367111.2867997925, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T13:59:59.999999-08:00", + "date_from": "2025-01-19T13:00:00-08:00", + "entity_type": "events", + "interval": "hour", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-19T13:00:00-08:00", + "2025-01-19T14:00:00-08:00", + "2025-01-19T15:00:00-08:00", + "2025-01-19T16:00:00-08:00", + "2025-01-19T17:00:00-08:00", + "2025-01-19T18:00:00-08:00", + "2025-01-19T19:00:00-08:00", + "2025-01-19T20:00:00-08:00", + "2025-01-19T21:00:00-08:00", + "2025-01-19T22:00:00-08:00", + "2025-01-19T23:00:00-08:00", + "2025-01-20T00:00:00-08:00", + "2025-01-20T01:00:00-08:00", + "2025-01-20T02:00:00-08:00", + "2025-01-20T03:00:00-08:00", + "2025-01-20T04:00:00-08:00", + "2025-01-20T05:00:00-08:00", + "2025-01-20T06:00:00-08:00", + "2025-01-20T07:00:00-08:00", + "2025-01-20T08:00:00-08:00", + "2025-01-20T09:00:00-08:00", + "2025-01-20T10:00:00-08:00", + "2025-01-20T11:00:00-08:00", + "2025-01-20T12:00:00-08:00", + "2025-01-20T13:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 11, + "name": "$web_vitals", + "custom_name": "FCP", + "math": "p99", + "math_property": "$web_vitals_FCP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + } + ], + "timezone": "US/Pacific", + "timings": [] +} diff --git a/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitalsPathBreakdown.json b/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitalsPathBreakdown.json new file mode 100644 index 00000000000000..e0addc0990fe7f --- /dev/null +++ b/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitalsPathBreakdown.json @@ -0,0 +1,65 @@ +{ + "cache_key": "cache_b9ec5efe0975ccf7b4089cdeb9434830_[]", + "cache_target_age": "2025-01-20T19:58:04.187422Z", + "calculation_trigger": null, + "columns": null, + "error": null, + "hasMore": null, + "hogql": "SELECT\n band,\n path,\n value\nFROM\n (SELECT\n multiIf(lessOrEquals(value, 200.0), 'good', lessOrEquals(value, 500.0), 'needs_improvements', 'poor') AS band,\n path,\n value\n FROM\n (SELECT\n events.properties.$pathname AS path,\n quantile(0.9)(toFloat(properties.$web_vitals_INP_value)) AS value\n FROM\n events\n WHERE\n and(equals(event, '$web_vitals'), notEquals(path, NULL), or(and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2024-12-21 00:00:00'))), less(timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59')))), false), 1)\n GROUP BY\n path\n HAVING\n greaterOrEquals(value, 0)))\nORDER BY\n value ASC,\n path ASC\nLIMIT 20\nBY band", + "is_cached": true, + "last_refresh": "2025-01-20T17:58:04.187422Z", + "limit": null, + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "count_pageviews", + "customChannelTypeRules": null, + "dataWarehouseEventsModifiers": null, + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_joined", + "propertyGroupsMode": null, + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T18:13:04.187422Z", + "offset": null, + "query_status": null, + "results": [ + { + "good": [ + { + "path": "/project/1/web/web-vitals", + "value": 8 + }, + { + "path": "/project/1/web", + "value": 115 + }, + { + "path": "/project/1", + "value": 145.8 + } + ], + "needs_improvements": [ + { + "path": "/project/1/product-analytics", + "value": 225 + }, + { + "path": "/project/1/feature-flags", + "value": 480 + } + ], + "poor": [] + } + ], + "samplingRate": null, + "timezone": "UTC", + "timings": [], + "types": null +} diff --git a/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitalsTrends.json b/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitalsTrends.json new file mode 100644 index 00000000000000..b5b834421682da --- /dev/null +++ b/frontend/src/queries/nodes/WebVitals/__mocks__/WebVitalsTrends.json @@ -0,0 +1,166 @@ +{ + "cache_key": "cache_e5302a42eaf932ef92f81374a652990e", + "cache_target_age": "2025-01-20T21:36:36.376082Z", + "calculation_trigger": null, + "error": "", + "hasMore": false, + "hogql": "SELECT\n arrayMap(number -> plus(toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toIntervalHour(number)), range(0, plus(coalesce(dateDiff('hour', toStartOfHour(assumeNotNull(toDateTime('2025-01-19 13:00:00'))), toStartOfHour(assumeNotNull(toDateTime('2025-01-20 13:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n quantile(0.9)(properties.$web_vitals_INP_value) AS total,\n toStartOfHour(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-19 13:00:00'))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 13:59:59'))), equals(event, '$web_vitals'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000", + "is_cached": true, + "last_refresh": "2025-01-20T21:21:36.376082Z", + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [ + { + "channel_type": "AI", + "combiner": "AND", + "id": "b6332cb7-a32f-4a62-929e-54dc5c37ba1d", + "items": [ + { + "id": "90f32f03-2a30-4278-9869-c1f99da6dbe9", + "key": "referring_domain", + "op": "exact", + "value": ["www.perplexity.ai", "chat.openai.com"] + } + ] + }, + { + "channel_type": "Newsletter", + "combiner": "OR", + "id": "eb1729b9-35a8-4013-bf1b-83bf107feb1f", + "items": [ + { + "id": "40b11644-51bd-49ac-a99e-82fc8f734eda", + "key": "referring_domain", + "op": "icontains", + "value": ["substack.com"] + }, + { + "id": "e048a56a-eba8-4e59-ad20-cda77883594c", + "key": "utm_source", + "op": "exact", + "value": ["substack", "posthog-newsletter"] + } + ] + } + ], + "dataWarehouseEventsModifiers": [], + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T21:24:36.376082Z", + "query_status": null, + "results": [ + { + "data": [360, 392, 392, 384, 384, 400, 376, 352, 392, 384, 416, 440, 448, 440, 432], + "labels": [ + "6-Jan-2025", + "7-Jan-2025", + "8-Jan-2025", + "9-Jan-2025", + "10-Jan-2025", + "11-Jan-2025", + "12-Jan-2025", + "13-Jan-2025", + "14-Jan-2025", + "15-Jan-2025", + "16-Jan-2025", + "17-Jan-2025", + "18-Jan-2025", + "19-Jan-2025", + "20-Jan-2025" + ], + "days": [ + "2025-01-06", + "2025-01-07", + "2025-01-08", + "2025-01-09", + "2025-01-10", + "2025-01-11", + "2025-01-12", + "2025-01-13", + "2025-01-14", + "2025-01-15", + "2025-01-16", + "2025-01-17", + "2025-01-18", + "2025-01-19", + "2025-01-20" + ], + "count": 5992, + "label": "$web_vitals", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "duration_ms", + "display": "ActionsLineGraph", + "goalLines": [ + { + "borderColor": "rgb(45, 200, 100)", + "displayLabel": false, + "label": "Good", + "value": 200 + }, + { + "borderColor": "rgb(255, 160, 0)", + "displayLabel": false, + "label": "Poor", + "value": 500 + } + ], + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$web_vitals", + "type": "events", + "order": 0, + "name": "$web_vitals", + "custom_name": "INP", + "math": "p90", + "math_property": "$web_vitals_INP_value", + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + } + } + ], + "timezone": "US/Pacific", + "timings": [] +} diff --git a/frontend/src/scenes/web-analytics/WebAnalyticsDashboard.stories.tsx b/frontend/src/scenes/web-analytics/WebAnalyticsDashboard.stories.tsx new file mode 100644 index 00000000000000..58b309a6ed033c --- /dev/null +++ b/frontend/src/scenes/web-analytics/WebAnalyticsDashboard.stories.tsx @@ -0,0 +1,89 @@ +import { Meta } from '@storybook/react' +import { useActions } from 'kea' +import { router } from 'kea-router' +import { FEATURE_FLAGS } from 'lib/constants' +import { useEffect } from 'react' +import { App } from 'scenes/App' +import { urls } from 'scenes/urls' + +import { mswDecorator } from '~/mocks/browser' + +import uniqueVisitorsMock from './__mocks__/UniqueVisitors.json' +import webOverviewMock from './__mocks__/WebOverview.json' +import browserMock from './tiles/__mocks__/Browser.json' +import pathMock from './tiles/__mocks__/Path.json' +import referringDomainMock from './tiles/__mocks__/ReferringDomain.json' +import retentionMock from './tiles/__mocks__/Retention.json' +import { DeviceTab, SourceTab, webAnalyticsLogic } from './webAnalyticsLogic' + +const meta: Meta = { + title: 'Scenes-App/Web Analytics', + parameters: { + layout: 'fullscreen', + viewMode: 'story', + mockDate: '2023-02-01', + featureFlags: [ + FEATURE_FLAGS.WEB_VITALS, + FEATURE_FLAGS.WEB_ANALYTICS_CONVERSION_GOAL_FILTERS, + FEATURE_FLAGS.WEB_ANALYTICS_PERIOD_COMPARISON, + ], + testOptions: { + includeNavigationInSnapshot: true, + waitForLoadersToDisappear: true, + waitForSelector: '[data-attr=trend-line-graph] > canvas', + }, + }, + decorators: [ + mswDecorator({ + get: { + // Live count of users on product + '/stats': () => [200, { users_on_product: 2387 }], + + // Avoid displaying error of missing $pageview/$pageleave/$web_vitals events + '/api/projects/:team_id/event_definitions': () => [200, { count: 5 }], + }, + post: { + '/api/environments/:team_id/query': (req) => { + const query = (req.body as any).query + const queryKind = query.kind + + if (queryKind === 'DatabaseSchemaQuery') { + return [200, { tables: {} }] // Empty schema, we don't care about this here + } else if (queryKind === 'WebOverviewQuery') { + return [200, webOverviewMock] + } else if (queryKind === 'TrendsQuery') { + return [200, uniqueVisitorsMock] + } else if (queryKind === 'WebStatsTableQuery') { + if (query.breakdownBy === 'Page') { + return [200, pathMock] + } else if (query.breakdownBy === 'InitialReferringDomain') { + return [200, referringDomainMock] + } else if (query.breakdownBy === 'Browser') { + return [200, browserMock] + } + } else if (queryKind === 'RetentionQuery') { + return [200, retentionMock] + } + }, + }, + }), + ], +} +export default meta + +export function WebAnalyticsDashboard(): JSX.Element { + const { setSourceTab, setDeviceTab } = useActions(webAnalyticsLogic) + + useEffect(() => { + // Open the web analytics dashboard page + router.actions.push(urls.webAnalytics()) + + // Set the source tab to referring domain + setSourceTab(SourceTab.REFERRING_DOMAIN) + + // Set the device tab to browsers + setDeviceTab(DeviceTab.BROWSER) + }, []) + + return +} diff --git a/frontend/src/scenes/web-analytics/WebAnalyticsLiveUserCount.tsx b/frontend/src/scenes/web-analytics/WebAnalyticsLiveUserCount.tsx index 18ce5abaed98b6..b35eb5f9e8bf08 100644 --- a/frontend/src/scenes/web-analytics/WebAnalyticsLiveUserCount.tsx +++ b/frontend/src/scenes/web-analytics/WebAnalyticsLiveUserCount.tsx @@ -29,7 +29,7 @@ export const WebAnalyticsLiveUserCount = (): JSX.Element | null => { return (
- + {humanFriendlyLargeNumber(liveUserCount)} currently online diff --git a/frontend/src/scenes/web-analytics/__mocks__/UniqueVisitors.json b/frontend/src/scenes/web-analytics/__mocks__/UniqueVisitors.json new file mode 100644 index 00000000000000..d2add98ba0a0d1 --- /dev/null +++ b/frontend/src/scenes/web-analytics/__mocks__/UniqueVisitors.json @@ -0,0 +1,213 @@ +{ + "cache_key": "cache_b80cb541a5183eaf621d6ea4a1ddaf07", + "cache_target_age": "2025-01-21T01:17:20.311895Z", + "calculation_trigger": null, + "error": "", + "hasMore": false, + "hogql": "SELECT\n arrayMap(number -> plus(toStartOfDay(assumeNotNull(toDateTime('2025-01-06 00:00:00'))), toIntervalDay(number)), range(0, plus(coalesce(dateDiff('day', toStartOfDay(assumeNotNull(toDateTime('2025-01-06 00:00:00'))), toStartOfDay(assumeNotNull(toDateTime('2025-01-20 23:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n count(DISTINCT e.person_id) AS total,\n toStartOfDay(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, toStartOfDay(assumeNotNull(toDateTime('2025-01-06 00:00:00')))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59'))), equals(event, '$pageview'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000\nUNION ALL\nSELECT\n arrayMap(number -> plus(toStartOfDay(assumeNotNull(toDateTime('2024-12-23 00:00:00'))), toIntervalDay(number)), range(0, plus(coalesce(dateDiff('day', toStartOfDay(assumeNotNull(toDateTime('2024-12-23 00:00:00'))), toStartOfDay(assumeNotNull(toDateTime('2025-01-06 23:59:59'))))), 1))) AS date,\n arrayMap(_match_date -> arraySum(arraySlice(groupArray(ifNull(count, 0)), indexOf(groupArray(day_start) AS _days_for_count, _match_date) AS _index, plus(minus(arrayLastIndex(x -> equals(x, _match_date), _days_for_count), _index), 1))), date) AS total\nFROM\n (SELECT\n sum(total) AS count,\n day_start\n FROM\n (SELECT\n count(DISTINCT e.person_id) AS total,\n toStartOfDay(timestamp) AS day_start\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, toStartOfDay(assumeNotNull(toDateTime('2024-12-23 00:00:00')))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-06 23:59:59'))), equals(event, '$pageview'))\n GROUP BY\n day_start)\n GROUP BY\n day_start\n ORDER BY\n day_start ASC)\nORDER BY\n arraySum(total) DESC\nLIMIT 50000", + "is_cached": false, + "last_refresh": "2025-01-20T23:17:20.311895Z", + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [], + "dataWarehouseEventsModifiers": [], + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T23:32:20.311895Z", + "query_status": null, + "results": [ + { + "data": [ + 22938, 24418, 23817, 23910, 20335, 9312, 17801, 25286, 25401, 25335, 25473, 21397, 9582, 18421, 20439 + ], + "labels": [ + "6-Jan-2025", + "7-Jan-2025", + "8-Jan-2025", + "9-Jan-2025", + "10-Jan-2025", + "11-Jan-2025", + "12-Jan-2025", + "13-Jan-2025", + "14-Jan-2025", + "15-Jan-2025", + "16-Jan-2025", + "17-Jan-2025", + "18-Jan-2025", + "19-Jan-2025", + "20-Jan-2025" + ], + "days": [ + "2025-01-06", + "2025-01-07", + "2025-01-08", + "2025-01-09", + "2025-01-10", + "2025-01-11", + "2025-01-12", + "2025-01-13", + "2025-01-14", + "2025-01-15", + "2025-01-16", + "2025-01-17", + "2025-01-18", + "2025-01-19", + "2025-01-20" + ], + "count": 313865, + "label": "$pageview", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": "Unique visitors", + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "compare": true, + "compare_label": "current" + }, + { + "data": [ + 16719, 11526, 8331, 13021, 12876, 7616, 14604, 14756, 9937, 9875, 18814, 16182, 8505, 17010, 22936 + ], + "labels": [ + "23-Dec-2024", + "24-Dec-2024", + "25-Dec-2024", + "26-Dec-2024", + "27-Dec-2024", + "28-Dec-2024", + "29-Dec-2024", + "30-Dec-2024", + "31-Dec-2024", + "1-Jan-2025", + "2-Jan-2025", + "3-Jan-2025", + "4-Jan-2025", + "5-Jan-2025", + "6-Jan-2025" + ], + "days": [ + "2024-12-23", + "2024-12-24", + "2024-12-25", + "2024-12-26", + "2024-12-27", + "2024-12-28", + "2024-12-29", + "2024-12-30", + "2024-12-31", + "2025-01-01", + "2025-01-02", + "2025-01-03", + "2025-01-04", + "2025-01-05", + "2025-01-06" + ], + "count": 202708, + "label": "$pageview", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "ActionsLineGraph", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": "Unique visitors", + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "compare": true, + "compare_label": "previous" + } + ], + "timezone": "US/Pacific", + "timings": [] +} diff --git a/frontend/src/scenes/web-analytics/__mocks__/WebOverview.json b/frontend/src/scenes/web-analytics/__mocks__/WebOverview.json new file mode 100644 index 00000000000000..46960d87a7058f --- /dev/null +++ b/frontend/src/scenes/web-analytics/__mocks__/WebOverview.json @@ -0,0 +1,78 @@ +{ + "cache_key": "cache_2d74908f63413d881a5c3d91a20397b2_[{'alias': '/person/', 'regex': '\\\\/person\\\\/[^\\\\/]+'}, {'alias': 'Any Session Recording Route', 'regex': '.*sessionRecordingId=[a-zA-Z]+'}, {'alias': '/insights/', 'regex': '.*\\\\/insights\\\\/[0-9a-zA-Z]+'}, {'alias': '/project/', 'regex': '\\\\/project\\\\/\\\\d+'}, {'alias': '/dashboard/', 'regex': '\\\\/dashboard\\\\/[0-9]+'}, {'alias': '/feature_flags/', 'regex': '\\\\/feature_flags\\\\/[0-9]+'}, {'alias': '/replay/', 'regex': '\\\\/replay\\\\/[0-9a-f\\\\-]+'}, {'alias': '/cohorts/', 'regex': '\\\\/cohorts\\\\/[0-9]+'}, {'alias': '/experiments/', 'regex': '\\\\/experiments\\\\/[0-9]+'}, {'alias': '/surveys/', 'regex': '\\\\/surveys\\\\/[0-9a-f\\\\-]+'}, {'alias': '/events/', 'regex': '\\\\/events\\\\/[0-9a-f\\\\-]+'}, {'alias': '/verify_email/', 'regex': '\\\\/verify_email\\\\/[0-9a-f\\\\-]+'}, {'alias': '/community/profiles/', 'regex': '\\\\/community\\\\/profiles\\\\/[0-9]+'}, {'alias': '/notebooks/', 'regex': '\\\\/notebooks\\\\/[a-zA-Z0-9]+'}, {'alias': '/groups/', 'regex': '\\\\/groups\\\\/[0-9]+\\\\/[a-zA-Z0-9]+'}, {'alias': '/signup/', 'regex': '\\\\/signup\\\\/[0-9a-f\\\\-]+'}, {'alias': '/playlists/', 'regex': '\\\\/playlists\\\\/[a-zA-Z0-9]+'}, {'alias': '/destinations/', 'regex': '\\\\/destinations?\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/properties/', 'regex': '\\\\/properties\\\\/[0-9a-f\\\\-]+'}, {'alias': '/sources/', 'regex': '\\\\/sources\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/reset', 'regex': '\\\\/reset\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/actions/', 'regex': '\\\\/actions\\\\/[0-9]+'}, {'alias': '/shared-metrics/', 'regex': '\\\\/shared-metrics\\\\/[0-9]+'}]", + "cache_target_age": "2025-01-20T23:41:25.930048Z", + "calculation_trigger": null, + "dateFrom": "2025-01-06 00:00:00", + "dateTo": "2025-01-20 23:59:59", + "error": null, + "hogql": null, + "is_cached": true, + "last_refresh": "2025-01-20T21:41:25.930048Z", + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [], + "dataWarehouseEventsModifiers": null, + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T21:56:25.930048Z", + "query_status": null, + "results": [ + { + "changeFromPreviousPct": 12.4, + "isIncreaseBad": null, + "key": "visitors", + "kind": "unit", + "previous": 160000, + "value": 171861 + }, + { + "changeFromPreviousPct": 15.6, + "isIncreaseBad": null, + "key": "views", + "kind": "unit", + "previous": 4700000, + "value": 4863551 + }, + { + "changeFromPreviousPct": -1.4, + "isIncreaseBad": null, + "key": "sessions", + "kind": "unit", + "previous": 552000, + "value": 547323 + }, + { + "changeFromPreviousPct": 0, + "isIncreaseBad": null, + "key": "session duration", + "kind": "duration_s", + "previous": 724, + "value": 724.9206857358319 + }, + { + "changeFromPreviousPct": -0.5, + "isIncreaseBad": true, + "key": "bounce rate", + "kind": "percentage", + "previous": 10, + "value": 9.921511959952788 + } + ], + "samplingRate": { + "denominator": null, + "numerator": 1 + }, + "timezone": "US/Pacific", + "timings": null +} diff --git a/frontend/src/scenes/web-analytics/tiles/WebAnalyticsTile.stories.tsx b/frontend/src/scenes/web-analytics/tiles/WebAnalyticsTile.stories.tsx new file mode 100644 index 00000000000000..7db0d114995d89 --- /dev/null +++ b/frontend/src/scenes/web-analytics/tiles/WebAnalyticsTile.stories.tsx @@ -0,0 +1,65 @@ +import { Meta, StoryFn, StoryObj } from '@storybook/react' + +import { mswDecorator } from '~/mocks/browser' +import { examples } from '~/queries/examples' +import { Query } from '~/queries/Query/Query' + +import browserMock from './__mocks__/Browser.json' +import pathMock from './__mocks__/Path.json' +import referringDomainMock from './__mocks__/ReferringDomain.json' +import retentionMock from './__mocks__/Retention.json' +import worldMapMock from './__mocks__/WorldMap.json' +import { webAnalyticsDataTableQueryContext } from './WebAnalyticsTile' + +type Story = StoryObj +const meta: Meta = { + title: 'Web Analytics/Tiles', + component: Query, + parameters: { + layout: 'fullscreen', + viewMode: 'story', + }, + decorators: [ + mswDecorator({ + post: { + '/api/environments/:team_id/query/': (req) => { + if ((req.body as any).query.kind === 'WebStatsTableQuery') { + if ((req.body as any).query.breakdownBy === 'InitialReferringDomain') { + return [200, referringDomainMock] + } else if ((req.body as any).query.breakdownBy === 'Page') { + return [200, pathMock] + } else if ((req.body as any).query.breakdownBy === 'Browser') { + return [200, browserMock] + } + } else if ((req.body as any).query.kind === 'TrendsQuery') { + if ((req.body as any).query.trendsFilter?.display === 'WorldMap') { + return [200, worldMapMock] + } + } else if ((req.body as any).query.kind === 'RetentionQuery') { + return [200, retentionMock] + } + }, + }, + }), + ], +} +export default meta + +const Template: StoryFn = (args) => { + return +} + +export const WorldMap: Story = Template.bind({}) +WorldMap.args = { query: examples['WebAnalyticsWorldMap'] } + +export const ReferrerDomain: Story = Template.bind({}) +ReferrerDomain.args = { query: examples['WebAnalyticsReferrerDomain'] } + +export const Path: Story = Template.bind({}) +Path.args = { query: examples['WebAnalyticsPath'] } + +export const Retention: Story = Template.bind({}) +Retention.args = { query: examples['WebAnalyticsRetention'] } + +export const Browser: Story = Template.bind({}) +Browser.args = { query: examples['WebAnalyticsBrowser'] } diff --git a/frontend/src/scenes/web-analytics/tiles/__mocks__/Browser.json b/frontend/src/scenes/web-analytics/tiles/__mocks__/Browser.json new file mode 100644 index 00000000000000..45e817d30ba8d9 --- /dev/null +++ b/frontend/src/scenes/web-analytics/tiles/__mocks__/Browser.json @@ -0,0 +1,85 @@ +{ + "cache_key": "cache_3dbcd9fb0d569f205781b7c151c83fb8_[{'alias': '/person/', 'regex': '\\\\/person\\\\/[^\\\\/]+'}, {'alias': 'Any Session Recording Route', 'regex': '.*sessionRecordingId=[a-zA-Z]+'}, {'alias': '/insights/', 'regex': '.*\\\\/insights\\\\/[0-9a-zA-Z]+'}, {'alias': '/project/', 'regex': '\\\\/project\\\\/\\\\d+'}, {'alias': '/dashboard/', 'regex': '\\\\/dashboard\\\\/[0-9]+'}, {'alias': '/feature_flags/', 'regex': '\\\\/feature_flags\\\\/[0-9]+'}, {'alias': '/replay/', 'regex': '\\\\/replay\\\\/[0-9a-f\\\\-]+'}, {'alias': '/cohorts/', 'regex': '\\\\/cohorts\\\\/[0-9]+'}, {'alias': '/experiments/', 'regex': '\\\\/experiments\\\\/[0-9]+'}, {'alias': '/surveys/', 'regex': '\\\\/surveys\\\\/[0-9a-f\\\\-]+'}, {'alias': '/events/', 'regex': '\\\\/events\\\\/[0-9a-f\\\\-]+'}, {'alias': '/verify_email/', 'regex': '\\\\/verify_email\\\\/[0-9a-f\\\\-]+'}, {'alias': '/community/profiles/', 'regex': '\\\\/community\\\\/profiles\\\\/[0-9]+'}, {'alias': '/notebooks/', 'regex': '\\\\/notebooks\\\\/[a-zA-Z0-9]+'}, {'alias': '/groups/', 'regex': '\\\\/groups\\\\/[0-9]+\\\\/[a-zA-Z0-9]+'}, {'alias': '/signup/', 'regex': '\\\\/signup\\\\/[0-9a-f\\\\-]+'}, {'alias': '/playlists/', 'regex': '\\\\/playlists\\\\/[a-zA-Z0-9]+'}, {'alias': '/destinations/', 'regex': '\\\\/destinations?\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/properties/', 'regex': '\\\\/properties\\\\/[0-9a-f\\\\-]+'}, {'alias': '/sources/', 'regex': '\\\\/sources\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/reset', 'regex': '\\\\/reset\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/actions/', 'regex': '\\\\/actions\\\\/[0-9]+'}, {'alias': '/shared-metrics/', 'regex': '\\\\/shared-metrics\\\\/[0-9]+'}]", + "cache_target_age": "2025-01-21T00:57:40.526794Z", + "calculation_trigger": null, + "columns": ["context.columns.breakdown_value", "context.columns.visitors", "context.columns.views"], + "error": null, + "hasMore": true, + "hogql": "SELECT\n breakdown_value AS `context.columns.breakdown_value`,\n tuple(uniq(filtered_person_id), NULL) AS `context.columns.visitors`,\n tuple(sum(filtered_pageview_count), NULL) AS `context.columns.views`\nFROM\n (SELECT\n any(person_id) AS filtered_person_id,\n count() AS filtered_pageview_count,\n properties.$browser AS breakdown_value,\n session.session_id AS session_id,\n any(session.$is_bounce) AS is_bounce,\n min(session.$start_timestamp) AS start_timestamp\n FROM\n events\n WHERE\n and(or(and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-06 00:00:00'))), less(timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59')))), false), or(equals(event, '$pageview'), equals(event, '$screen')), 1, notEquals(breakdown_value, NULL))\n GROUP BY\n session_id,\n breakdown_value)\nGROUP BY\n `context.columns.breakdown_value`\nORDER BY\n `context.columns.visitors` DESC,\n `context.columns.views` DESC,\n `context.columns.breakdown_value` ASC\nLIMIT 11\nOFFSET 0", + "is_cached": true, + "last_refresh": "2025-01-20T22:57:40.526794Z", + "limit": 10, + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [ + { + "channel_type": "AI", + "combiner": "AND", + "id": "b6332cb7-a32f-4a62-929e-54dc5c37ba1d", + "items": [ + { + "id": "90f32f03-2a30-4278-9869-c1f99da6dbe9", + "key": "referring_domain", + "op": "exact", + "value": ["www.perplexity.ai", "chat.openai.com"] + } + ] + }, + { + "channel_type": "Newsletter", + "combiner": "OR", + "id": "eb1729b9-35a8-4013-bf1b-83bf107feb1f", + "items": [ + { + "id": "40b11644-51bd-49ac-a99e-82fc8f734eda", + "key": "referring_domain", + "op": "icontains", + "value": ["substack.com"] + }, + { + "id": "e048a56a-eba8-4e59-ad20-cda77883594c", + "key": "utm_source", + "op": "exact", + "value": ["substack", "posthog-newsletter"] + } + ] + } + ], + "dataWarehouseEventsModifiers": null, + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T23:12:40.526794Z", + "offset": 0, + "query_status": null, + "results": [ + ["Chrome", [130638, 128392], [4098916, 4150238]], + ["Firefox", [12749, 13105], [279210, 275481]], + ["Mobile Safari", [11677, 12044], [83129, 81893]], + ["Safari", [8284, 8129], [252689, 255104]], + ["Microsoft Edge", [6251, 6482], [170961, 168234]], + ["Chrome iOS", [2993, 2851], [29640, 30128]], + ["Opera", [740, 712], [17802, 18234]], + ["Firefox iOS", [265, 284], [2003, 1892]], + ["Samsung Internet", [246, 231], [1506, 1582]], + ["Android Mobile", [92, 87], [257, 271]] + ], + "samplingRate": null, + "timezone": "US/Pacific", + "timings": [], + "types": [ + ["context.columns.breakdown_value", "Nullable(String)"], + ["context.columns.visitors", "Tuple(UInt64, Nullable(Nothing))"], + ["context.columns.views", "Tuple(UInt64, Nullable(Nothing))"] + ] +} diff --git a/frontend/src/scenes/web-analytics/tiles/__mocks__/Path.json b/frontend/src/scenes/web-analytics/tiles/__mocks__/Path.json new file mode 100644 index 00000000000000..32e889596b1c6f --- /dev/null +++ b/frontend/src/scenes/web-analytics/tiles/__mocks__/Path.json @@ -0,0 +1,58 @@ +{ + "cache_key": "cache_bc7df2389a4b4e9958a291d07ca0894a_[{'alias': '/person/', 'regex': '\\\\/person\\\\/[^\\\\/]+'}, {'alias': 'Any Session Recording Route', 'regex': '.*sessionRecordingId=[a-zA-Z]+'}, {'alias': '/insights/', 'regex': '.*\\\\/insights\\\\/[0-9a-zA-Z]+'}, {'alias': '/project/', 'regex': '\\\\/project\\\\/\\\\d+'}, {'alias': '/dashboard/', 'regex': '\\\\/dashboard\\\\/[0-9]+'}, {'alias': '/feature_flags/', 'regex': '\\\\/feature_flags\\\\/[0-9]+'}, {'alias': '/replay/', 'regex': '\\\\/replay\\\\/[0-9a-f\\\\-]+'}, {'alias': '/cohorts/', 'regex': '\\\\/cohorts\\\\/[0-9]+'}, {'alias': '/experiments/', 'regex': '\\\\/experiments\\\\/[0-9]+'}, {'alias': '/surveys/', 'regex': '\\\\/surveys\\\\/[0-9a-f\\\\-]+'}, {'alias': '/events/', 'regex': '\\\\/events\\\\/[0-9a-f\\\\-]+'}, {'alias': '/verify_email/', 'regex': '\\\\/verify_email\\\\/[0-9a-f\\\\-]+'}, {'alias': '/community/profiles/', 'regex': '\\\\/community\\\\/profiles\\\\/[0-9]+'}, {'alias': '/notebooks/', 'regex': '\\\\/notebooks\\\\/[a-zA-Z0-9]+'}, {'alias': '/groups/', 'regex': '\\\\/groups\\\\/[0-9]+\\\\/[a-zA-Z0-9]+'}, {'alias': '/signup/', 'regex': '\\\\/signup\\\\/[0-9a-f\\\\-]+'}, {'alias': '/playlists/', 'regex': '\\\\/playlists\\\\/[a-zA-Z0-9]+'}, {'alias': '/destinations/', 'regex': '\\\\/destinations?\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/properties/', 'regex': '\\\\/properties\\\\/[0-9a-f\\\\-]+'}, {'alias': '/sources/', 'regex': '\\\\/sources\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/reset', 'regex': '\\\\/reset\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/actions/', 'regex': '\\\\/actions\\\\/[0-9]+'}, {'alias': '/shared-metrics/', 'regex': '\\\\/shared-metrics\\\\/[0-9]+'}]", + "cache_target_age": "2025-01-20T23:43:16.443321Z", + "calculation_trigger": null, + "columns": [ + "context.columns.breakdown_value", + "context.columns.visitors", + "context.columns.views", + "context.columns.bounce_rate" + ], + "error": null, + "hasMore": true, + "hogql": "SELECT\n counts.breakdown_value AS `context.columns.breakdown_value`,\n tuple(counts.visitors, counts.previous_visitors) AS `context.columns.visitors`,\n tuple(counts.views, counts.previous_views) AS `context.columns.views`,\n tuple(bounce.bounce_rate, bounce.previous_bounce_rate) AS `context.columns.bounce_rate`\nFROM\n (SELECT\n breakdown_value,\n uniqIf(filtered_person_id, and(greaterOrEquals(start_timestamp, assumeNotNull(toDateTime('2025-01-06 00:00:00'))), less(start_timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59'))))) AS visitors,\n uniqIf(filtered_person_id, false) AS previous_visitors,\n sumIf(filtered_pageview_count, and(greaterOrEquals(start_timestamp, assumeNotNull(toDateTime('2025-01-06 00:00:00'))), less(start_timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59'))))) AS views,\n sumIf(filtered_pageview_count, false) AS previous_views\n FROM\n (SELECT\n any(person_id) AS filtered_person_id,\n count() AS filtered_pageview_count,\n replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(events.properties.$pathname, '\\\\/person\\\\/[^\\\\/]+', '/person/'), '.*sessionRecordingId=[a-zA-Z]+', 'Any Session Recording Route'), '.*\\\\/insights\\\\/[0-9a-zA-Z]+', '/insights/'), '\\\\/project\\\\/\\\\d+', '/project/'), '\\\\/dashboard\\\\/[0-9]+', '/dashboard/'), '\\\\/feature_flags\\\\/[0-9]+', '/feature_flags/'), '\\\\/replay\\\\/[0-9a-f\\\\-]+', '/replay/'), '\\\\/cohorts\\\\/[0-9]+', '/cohorts/'), '\\\\/experiments\\\\/[0-9]+', '/experiments/'), '\\\\/surveys\\\\/[0-9a-f\\\\-]+', '/surveys/'), '\\\\/events\\\\/[0-9a-f\\\\-]+', '/events/'), '\\\\/verify_email\\\\/[0-9a-f\\\\-]+', '/verify_email/'), '\\\\/community\\\\/profiles\\\\/[0-9]+', '/community/profiles/'), '\\\\/notebooks\\\\/[a-zA-Z0-9]+', '/notebooks/'), '\\\\/groups\\\\/[0-9]+\\\\/[a-zA-Z0-9]+', '/groups/'), '\\\\/signup\\\\/[0-9a-f\\\\-]+', '/signup/'), '\\\\/playlists\\\\/[a-zA-Z0-9]+', '/playlists/'), '\\\\/destinations?\\\\/[0-9a-zA-Z\\\\-]+', '/destinations/'), '\\\\/properties\\\\/[0-9a-f\\\\-]+', '/properties/'), '\\\\/sources\\\\/[0-9a-zA-Z\\\\-]+', '/sources/'), '\\\\/reset\\\\/[0-9a-zA-Z\\\\-]+', '/reset'), '\\\\/actions\\\\/[0-9]+', '/actions/'), '\\\\/shared-metrics\\\\/[0-9]+', '/shared-metrics/') AS breakdown_value,\n session.session_id AS session_id,\n min(session.$start_timestamp) AS start_timestamp\n FROM\n events\n WHERE\n and(or(equals(events.event, '$pageview'), equals(events.event, '$screen')), or(and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-06 00:00:00'))), less(timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59')))), false), 1, 1, notEquals(breakdown_value, NULL))\n GROUP BY\n session_id,\n breakdown_value)\n GROUP BY\n breakdown_value) AS counts\n LEFT JOIN (SELECT\n breakdown_value,\n avgIf(is_bounce, and(greaterOrEquals(start_timestamp, assumeNotNull(toDateTime('2025-01-06 00:00:00'))), less(start_timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59'))))) AS bounce_rate,\n avgIf(is_bounce, false) AS previous_bounce_rate\n FROM\n (SELECT\n replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(replaceRegexpAll(session.$entry_pathname, '\\\\/person\\\\/[^\\\\/]+', '/person/'), '.*sessionRecordingId=[a-zA-Z]+', 'Any Session Recording Route'), '.*\\\\/insights\\\\/[0-9a-zA-Z]+', '/insights/'), '\\\\/project\\\\/\\\\d+', '/project/'), '\\\\/dashboard\\\\/[0-9]+', '/dashboard/'), '\\\\/feature_flags\\\\/[0-9]+', '/feature_flags/'), '\\\\/replay\\\\/[0-9a-f\\\\-]+', '/replay/'), '\\\\/cohorts\\\\/[0-9]+', '/cohorts/'), '\\\\/experiments\\\\/[0-9]+', '/experiments/'), '\\\\/surveys\\\\/[0-9a-f\\\\-]+', '/surveys/'), '\\\\/events\\\\/[0-9a-f\\\\-]+', '/events/'), '\\\\/verify_email\\\\/[0-9a-f\\\\-]+', '/verify_email/'), '\\\\/community\\\\/profiles\\\\/[0-9]+', '/community/profiles/'), '\\\\/notebooks\\\\/[a-zA-Z0-9]+', '/notebooks/'), '\\\\/groups\\\\/[0-9]+\\\\/[a-zA-Z0-9]+', '/groups/'), '\\\\/signup\\\\/[0-9a-f\\\\-]+', '/signup/'), '\\\\/playlists\\\\/[a-zA-Z0-9]+', '/playlists/'), '\\\\/destinations?\\\\/[0-9a-zA-Z\\\\-]+', '/destinations/'), '\\\\/properties\\\\/[0-9a-f\\\\-]+', '/properties/'), '\\\\/sources\\\\/[0-9a-zA-Z\\\\-]+', '/sources/'), '\\\\/reset\\\\/[0-9a-zA-Z\\\\-]+', '/reset'), '\\\\/actions\\\\/[0-9]+', '/actions/'), '\\\\/shared-metrics\\\\/[0-9]+', '/shared-metrics/') AS breakdown_value,\n any(session.$is_bounce) AS is_bounce,\n session.session_id AS session_id,\n min(session.$start_timestamp) AS start_timestamp\n FROM\n events\n WHERE\n and(or(equals(events.event, '$pageview'), equals(events.event, '$screen')), notEquals(breakdown_value, NULL), or(and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-06 00:00:00'))), less(timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59')))), false), 1, 1)\n GROUP BY\n session_id,\n breakdown_value)\n GROUP BY\n breakdown_value) AS bounce ON equals(counts.breakdown_value, bounce.breakdown_value)\nORDER BY\n `context.columns.visitors` DESC,\n `context.columns.views` DESC,\n `context.columns.breakdown_value` ASC\nLIMIT 11\nOFFSET 0", + "is_cached": true, + "last_refresh": "2025-01-20T21:43:16.443321Z", + "limit": 10, + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [], + "dataWarehouseEventsModifiers": null, + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T21:58:16.443321Z", + "offset": 0, + "query_status": null, + "results": [ + ["/", [76095, 72341], [233693, 241023], [0.1182, 0.1162]], + ["/login", [53629, 51234], [192373, 195481], [0.03184, 0.02984]], + ["/project/", [33811, 35102], [331828, 328192], [0.009685, 0.008685]], + ["/project//dashboard", [16314, 15892], [131470, 134829], [0.010872, 0.009872]], + ["/insights/", [16249, 16892], [516739, 509234], [0.007644, 0.008644]], + ["/project//insights", [15902, 15234], [148649, 152938], [0.007896, 0.006896]], + ["/project//web", [15687, 16234], [198440, 195234], [0.007481, 0.008481]], + ["/pricing", [15295, 14892], [24103, 25234], [0.2477, 0.2457]], + ["/project//replay/home", [15189, 15892], [632756, 628192], [0.009924, 0.008924]], + ["/project//dashboard/", [14598, 14129], [259451, 262938], [0.007145, 0.006145]] + ], + "samplingRate": null, + "timezone": "US/Pacific", + "timings": [], + "types": [ + ["context.columns.breakdown_value", "Nullable(String)"], + ["context.columns.visitors", "Tuple(UInt64, UInt64)"], + ["context.columns.views", "Tuple(UInt64, UInt64)"], + ["context.columns.bounce_rate", "Tuple(Nullable(Float64), Nullable(Float64))"] + ] +} diff --git a/frontend/src/scenes/web-analytics/tiles/__mocks__/ReferringDomain.json b/frontend/src/scenes/web-analytics/tiles/__mocks__/ReferringDomain.json new file mode 100644 index 00000000000000..9715e435e9ff99 --- /dev/null +++ b/frontend/src/scenes/web-analytics/tiles/__mocks__/ReferringDomain.json @@ -0,0 +1,52 @@ +{ + "cache_key": "cache_1f01018c3a7bd9ef3f1fe37562a3ad2a_[{'alias': '/person/', 'regex': '\\\\/person\\\\/[^\\\\/]+'}, {'alias': 'Any Session Recording Route', 'regex': '.*sessionRecordingId=[a-zA-Z]+'}, {'alias': '/insights/', 'regex': '.*\\\\/insights\\\\/[0-9a-zA-Z]+'}, {'alias': '/project/', 'regex': '\\\\/project\\\\/\\\\d+'}, {'alias': '/dashboard/', 'regex': '\\\\/dashboard\\\\/[0-9]+'}, {'alias': '/feature_flags/', 'regex': '\\\\/feature_flags\\\\/[0-9]+'}, {'alias': '/replay/', 'regex': '\\\\/replay\\\\/[0-9a-f\\\\-]+'}, {'alias': '/cohorts/', 'regex': '\\\\/cohorts\\\\/[0-9]+'}, {'alias': '/experiments/', 'regex': '\\\\/experiments\\\\/[0-9]+'}, {'alias': '/surveys/', 'regex': '\\\\/surveys\\\\/[0-9a-f\\\\-]+'}, {'alias': '/events/', 'regex': '\\\\/events\\\\/[0-9a-f\\\\-]+'}, {'alias': '/verify_email/', 'regex': '\\\\/verify_email\\\\/[0-9a-f\\\\-]+'}, {'alias': '/community/profiles/', 'regex': '\\\\/community\\\\/profiles\\\\/[0-9]+'}, {'alias': '/notebooks/', 'regex': '\\\\/notebooks\\\\/[a-zA-Z0-9]+'}, {'alias': '/groups/', 'regex': '\\\\/groups\\\\/[0-9]+\\\\/[a-zA-Z0-9]+'}, {'alias': '/signup/', 'regex': '\\\\/signup\\\\/[0-9a-f\\\\-]+'}, {'alias': '/playlists/', 'regex': '\\\\/playlists\\\\/[a-zA-Z0-9]+'}, {'alias': '/destinations/', 'regex': '\\\\/destinations?\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/properties/', 'regex': '\\\\/properties\\\\/[0-9a-f\\\\-]+'}, {'alias': '/sources/', 'regex': '\\\\/sources\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/reset', 'regex': '\\\\/reset\\\\/[0-9a-zA-Z\\\\-]+'}, {'alias': '/actions/', 'regex': '\\\\/actions\\\\/[0-9]+'}, {'alias': '/shared-metrics/', 'regex': '\\\\/shared-metrics\\\\/[0-9]+'}]", + "cache_target_age": "2025-01-21T00:30:47.497494Z", + "calculation_trigger": null, + "columns": ["context.columns.breakdown_value", "context.columns.visitors", "context.columns.views"], + "error": null, + "hasMore": true, + "hogql": "SELECT\n breakdown_value AS `context.columns.breakdown_value`,\n tuple(uniq(filtered_person_id), NULL) AS `context.columns.visitors`,\n tuple(sum(filtered_pageview_count), NULL) AS `context.columns.views`\nFROM\n (SELECT\n any(person_id) AS filtered_person_id,\n count() AS filtered_pageview_count,\n session.$entry_referring_domain AS breakdown_value,\n session.session_id AS session_id,\n any(session.$is_bounce) AS is_bounce,\n min(session.$start_timestamp) AS start_timestamp\n FROM\n events\n WHERE\n and(or(and(greaterOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-06 00:00:00'))), less(timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59')))), false), or(equals(event, '$pageview'), equals(event, '$screen')), 1, notEquals(breakdown_value, NULL))\n GROUP BY\n session_id,\n breakdown_value)\nGROUP BY\n `context.columns.breakdown_value`\nORDER BY\n `context.columns.visitors` DESC,\n `context.columns.views` DESC,\n `context.columns.breakdown_value` ASC\nLIMIT 11\nOFFSET 0", + "is_cached": false, + "last_refresh": "2025-01-20T22:30:47.497494Z", + "limit": 10, + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [], + "dataWarehouseEventsModifiers": null, + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T22:45:47.497494Z", + "offset": 0, + "query_status": null, + "results": [ + ["$direct", [104808, 100000], [4172018, 4200000]], + ["www.google.com", [53556, 48234], [293642, 298481]], + ["posthog.com", [7357, 8912], [24274, 29183]], + ["us.posthog.com", [4149, 3891], [170370, 175293]], + ["eu.posthog.com", [2370, 3142], [105763, 118924]], + ["www.linkedin.com", [2210, 1893], [4626, 4829]], + ["duckduckgo.com", [2134, 2531], [8948, 8237]], + ["github.com", [1605, 1428], [9318, 9475]], + ["www.bing.com", [1217, 1502], [5421, 5234]], + ["t.co", [1060, 892], [2931, 3047]] + ], + "samplingRate": null, + "timezone": "US/Pacific", + "timings": [], + "types": [ + ["context.columns.breakdown_value", "Nullable(String)"], + ["context.columns.visitors", "Tuple(UInt64, Nullable(Nothing))"], + ["context.columns.views", "Tuple(UInt64, Nullable(Nothing))"] + ] +} diff --git a/frontend/src/scenes/web-analytics/tiles/__mocks__/Retention.json b/frontend/src/scenes/web-analytics/tiles/__mocks__/Retention.json new file mode 100644 index 00000000000000..8d727dc0849309 --- /dev/null +++ b/frontend/src/scenes/web-analytics/tiles/__mocks__/Retention.json @@ -0,0 +1,188 @@ +{ + "cache_key": "cache_aba8c07511e89a6429bd57b150a564af", + "cache_target_age": "2025-01-21T09:41:32.060989Z", + "calculation_trigger": null, + "error": null, + "hogql": "SELECT\n [actor_activity.breakdown_values] AS breakdown_values,\n actor_activity.intervals_from_base AS intervals_from_base,\n count(DISTINCT actor_activity.actor_id) AS count\nFROM\n (SELECT\n events.person_id AS actor_id,\n if(has(arraySort(groupUniqArrayIf(toStartOfWeek(events.timestamp, 3), and(equals(events.event, '$pageview'), and(greaterOrEquals(events.timestamp, toStartOfWeek(toDateTime('2024-12-02 00:00:00.000000'), 3)), lessOrEquals(events.timestamp, toDateTime('2025-01-27 00:00:00.000000')))))) AS _target_timestamps, toStartOfWeek(minIf(events.timestamp, equals(events.event, '$pageview')))), _target_timestamps, []) AS target_timestamps,\n arraySort(groupUniqArrayIf(toStartOfWeek(events.timestamp, 3), equals(events.event, '$pageview'))) AS returning_timestamps,\n arrayMap(x -> plus(toStartOfWeek(assumeNotNull(toDateTime('2024-12-02 00:00:00'))), toIntervalWeek(x)), range(0, 8)) AS date_range,\n arrayJoin(arrayFilter(x -> greater(x, -1), arrayMap((_breakdown_value, breakdown_value_timestamp) -> if(equals(target_timestamps[1], breakdown_value_timestamp), minus(_breakdown_value, 1), -1), arrayEnumerate(date_range), date_range))) AS breakdown_values,\n arrayJoin(arrayConcat(if(equals(target_timestamps[1], date_range[plus(breakdown_values, 1)]), [0], []), arrayFilter(x -> greater(x, 0), arrayMap(_timestamp -> minus(indexOf(arraySlice(date_range, plus(breakdown_values, 1)), _timestamp), 1), returning_timestamps)))) AS intervals_from_base\n FROM\n events\n WHERE\n in(event, tuple('$pageview', '$pageview'))\n GROUP BY\n actor_id) AS actor_activity\nGROUP BY\n breakdown_values,\n intervals_from_base\nORDER BY\n breakdown_values ASC,\n intervals_from_base ASC\nLIMIT 10000", + "is_cached": true, + "last_refresh": "2025-01-20T21:41:32.060989Z", + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [], + "dataWarehouseEventsModifiers": null, + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T21:56:32.060989Z", + "query_status": null, + "results": [ + { + "date": "2024-12-02T00:00:00-08:00", + "label": "Week 0", + "values": [ + { + "count": 52839 + }, + { + "count": 2501 + }, + { + "count": 1610 + }, + { + "count": 859 + }, + { + "count": 845 + }, + { + "count": 1135 + }, + { + "count": 1081 + }, + { + "count": 287 + } + ] + }, + { + "date": "2024-12-09T00:00:00-08:00", + "label": "Week 1", + "values": [ + { + "count": 51654 + }, + { + "count": 2449 + }, + { + "count": 1044 + }, + { + "count": 1015 + }, + { + "count": 1304 + }, + { + "count": 1193 + }, + { + "count": 304 + } + ] + }, + { + "date": "2024-12-16T00:00:00-08:00", + "label": "Week 2", + "values": [ + { + "count": 46686 + }, + { + "count": 1557 + }, + { + "count": 1205 + }, + { + "count": 1453 + }, + { + "count": 1251 + }, + { + "count": 338 + } + ] + }, + { + "date": "2024-12-23T00:00:00-08:00", + "label": "Week 3", + "values": [ + { + "count": 36137 + }, + { + "count": 1208 + }, + { + "count": 887 + }, + { + "count": 704 + }, + { + "count": 173 + } + ] + }, + { + "date": "2024-12-30T00:00:00-08:00", + "label": "Week 4", + "values": [ + { + "count": 38690 + }, + { + "count": 1751 + }, + { + "count": 1083 + }, + { + "count": 264 + } + ] + }, + { + "date": "2025-01-06T00:00:00-08:00", + "label": "Week 5", + "values": [ + { + "count": 54805 + }, + { + "count": 2665 + }, + { + "count": 543 + } + ] + }, + { + "date": "2025-01-13T00:00:00-08:00", + "label": "Week 6", + "values": [ + { + "count": 58006 + }, + { + "count": 1008 + } + ] + }, + { + "date": "2025-01-20T00:00:00-08:00", + "label": "Week 7", + "values": [ + { + "count": 6656 + } + ] + } + ], + "timezone": "US/Pacific", + "timings": [] +} diff --git a/frontend/src/scenes/web-analytics/tiles/__mocks__/WorldMap.json b/frontend/src/scenes/web-analytics/tiles/__mocks__/WorldMap.json new file mode 100644 index 00000000000000..58a58cc072027e --- /dev/null +++ b/frontend/src/scenes/web-analytics/tiles/__mocks__/WorldMap.json @@ -0,0 +1,11490 @@ +{ + "cache_key": "cache_284659783c7c6e632de63417e564c264", + "cache_target_age": "2025-01-20T23:45:54.521201Z", + "calculation_trigger": null, + "error": "", + "hasMore": false, + "hogql": "SELECT\n sum(total) AS total,\n if(ifNull(greaterOrEquals(row_number, 251), 0), '$$_posthog_breakdown_other_$$', breakdown_value) AS breakdown_value\nFROM\n (SELECT\n count AS total,\n breakdown_value AS breakdown_value,\n row_number() OVER (ORDER BY total DESC) AS row_number\n FROM\n (SELECT\n sum(total) AS count,\n breakdown_value\n FROM\n (SELECT\n count(DISTINCT e.person_id) AS total,\n ifNull(nullIf(toString(properties.$geoip_country_code), ''), '$$_posthog_breakdown_null_$$') AS breakdown_value\n FROM\n events AS e SAMPLE 1\n WHERE\n and(greaterOrEquals(timestamp, toStartOfDay(assumeNotNull(toDateTime('2025-01-06 00:00:00')))), lessOrEquals(timestamp, assumeNotNull(toDateTime('2025-01-20 23:59:59'))), equals(event, '$pageview'))\n GROUP BY\n breakdown_value)\n GROUP BY\n breakdown_value\n ORDER BY\n breakdown_value ASC)\n ORDER BY\n total DESC,\n breakdown_value ASC)\nWHERE\n notEquals(breakdown_value, NULL)\nGROUP BY\n breakdown_value\nORDER BY\n if(equals(breakdown_value, '$$_posthog_breakdown_other_$$'), 2, if(equals(breakdown_value, '$$_posthog_breakdown_null_$$'), 1, 0)) ASC,\n total DESC,\n breakdown_value ASC\nLIMIT 50000", + "is_cached": false, + "last_refresh": "2025-01-20T21:45:54.521201Z", + "modifiers": { + "bounceRateDurationSeconds": null, + "bounceRatePageViewMode": "uniq_page_screen_autocaptures", + "customChannelTypeRules": [], + "dataWarehouseEventsModifiers": [], + "debug": null, + "inCohortVia": "auto", + "materializationMode": "legacy_null_as_null", + "optimizeJoinedFilters": false, + "personsArgMaxVersion": "auto", + "personsJoinMode": null, + "personsOnEventsMode": "person_id_override_properties_on_events", + "propertyGroupsMode": "optimized", + "s3TableUseInvalidColumns": null, + "sessionTableVersion": "auto", + "useMaterializedViews": true + }, + "next_allowed_client_refresh": "2025-01-20T22:00:54.521201Z", + "query_status": null, + "results": [ + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 45319, + "label": "US", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "US" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 18108, + "label": "FR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "FR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 12971, + "label": "IN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 11873, + "label": "GB", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GB" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 10586, + "label": "DE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "DE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6725, + "label": "CA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4438, + "label": "BR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4178, + "label": "ES", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ES" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4156, + "label": "NL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3240, + "label": "AU", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AU" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3076, + "label": "PL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1945, + "label": "CN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1913, + "label": "SE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1739, + "label": "SG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1713, + "label": "ID", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ID" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1629, + "label": "IL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1617, + "label": "IT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1570, + "label": "PT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1440, + "label": "CH", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CH" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1436, + "label": "RU", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "RU" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1399, + "label": "VN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "VN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1368, + "label": "NO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1347, + "label": "UA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "UA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1310, + "label": "AT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1244, + "label": "DK", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "DK" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1232, + "label": "BE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1217, + "label": "TR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1123, + "label": "FI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "FI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1121, + "label": "HK", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "HK" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1107, + "label": "MX", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MX" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1081, + "label": "IE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1079, + "label": "JP", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "JP" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1078, + "label": "PK", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PK" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1047, + "label": "CZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 993, + "label": "KR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "KR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 945, + "label": "RO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "RO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 943, + "label": "PH", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PH" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 877, + "label": "AR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 824, + "label": "TH", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TH" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 770, + "label": "AE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 718, + "label": "BG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 711, + "label": "CO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 689, + "label": "NZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 687, + "label": "ZA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ZA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 655, + "label": "EG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "EG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 637, + "label": "HU", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "HU" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 606, + "label": "LT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 595, + "label": "GR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 594, + "label": "HR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "HR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 585, + "label": "MY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 548, + "label": "RS", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "RS" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 536, + "label": "KE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "KE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 527, + "label": "GE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 523, + "label": "TW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 510, + "label": "EE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "EE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 499, + "label": "CL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 493, + "label": "IR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 482, + "label": "NG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 474, + "label": "BD", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BD" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 442, + "label": "MA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 364, + "label": "SI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 334, + "label": "SK", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SK" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 309, + "label": "SA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 303, + "label": "LV", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LV" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 220, + "label": "LK", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LK" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 211, + "label": "CY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 211, + "label": "NP", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NP" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 208, + "label": "KZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "KZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 198, + "label": "AM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 195, + "label": "GH", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GH" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 166, + "label": "UY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "UY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 158, + "label": "PE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 154, + "label": "CR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 148, + "label": "BY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 145, + "label": "DZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "DZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 138, + "label": "TN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 137, + "label": "UZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "UZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 115, + "label": "IS", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IS" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 110, + "label": "MD", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MD" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 104, + "label": "MK", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MK" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 98, + "label": "DO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "DO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 96, + "label": "MT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 93, + "label": "BA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 92, + "label": "JO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "JO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 87, + "label": "IQ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IQ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 84, + "label": "LB", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LB" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 83, + "label": "LU", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LU" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 76, + "label": "VE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "VE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 75, + "label": "EC", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "EC" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 66, + "label": "ME", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ME" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 63, + "label": "PS", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PS" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 60, + "label": "GT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 55, + "label": "ET", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ET" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 54, + "label": "UG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "UG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 52, + "label": "AZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 52, + "label": "BH", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BH" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 52, + "label": "NI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 52, + "label": "PR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 49, + "label": "PY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 49, + "label": "QA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "QA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 48, + "label": "KH", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "KH" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 47, + "label": "AL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 44, + "label": "KG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "KG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 40, + "label": "PA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 38, + "label": "BO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 38, + "label": "MU", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MU" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 36, + "label": "JM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "JM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 36, + "label": "KW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "KW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 34, + "label": "HN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "HN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 34, + "label": "SN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 33, + "label": "RW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "RW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 32, + "label": "XK", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "XK" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 29, + "label": "RE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "RE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 29, + "label": "SV", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SV" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 28, + "label": "ZW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ZW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 27, + "label": "MN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 27, + "label": "TZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 25, + "label": "CI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 24, + "label": "AD", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AD" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 23, + "label": "OM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "OM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 22, + "label": "MG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 20, + "label": "MV", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MV" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 18, + "label": "BJ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BJ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 17, + "label": "CM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 14, + "label": "MO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 14, + "label": "TT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 14, + "label": "ZM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ZM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 13, + "label": "JE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "JE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 11, + "label": "BT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 11, + "label": "BZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 11, + "label": "IM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "IM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 11, + "label": "SO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 10, + "label": "BS", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BS" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 10, + "label": "SC", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SC" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 10, + "label": "YE", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "YE" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 9, + "label": "GP", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GP" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 9, + "label": "MC", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MC" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 9, + "label": "ML", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "ML" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 9, + "label": "TG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 8, + "label": "CU", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CU" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 8, + "label": "GF", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GF" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 8, + "label": "KY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "KY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 8, + "label": "MM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 7, + "label": "AG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 7, + "label": "BB", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BB" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 7, + "label": "HT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "HT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 7, + "label": "LA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 7, + "label": "LY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "AO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "BM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "CW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "GI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "MR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "MZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "NA", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NA" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 6, + "label": "SR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 5, + "label": "CV", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CV" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 5, + "label": "LR", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LR" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 5, + "label": "MQ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MQ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4, + "label": "BF", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BF" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4, + "label": "CD", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CD" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4, + "label": "FO", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "FO" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4, + "label": "GG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4, + "label": "LI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 4, + "label": "SY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3, + "label": "AF", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AF" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3, + "label": "AW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3, + "label": "BW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3, + "label": "CG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "CG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3, + "label": "FJ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "FJ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3, + "label": "SM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 3, + "label": "TJ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TJ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "AI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "AX", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "AX" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "BI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "BN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "LC", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LC" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "MW", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MW" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "PG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "PG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "SD", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SD" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "SX", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SX" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "SZ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SZ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 2, + "label": "VU", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "VU" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "BQ", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "BQ" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "DM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "DM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "GD", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GD" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "GL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "GN", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GN" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "GY", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "GY" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "LS", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "LS" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "MF", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "MF" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "NC", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "NC" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "SB", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SB" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "SL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "SS", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "SS" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "TL", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TL" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "TM", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "TM" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "VG", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "VG" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "VI", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "VI" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 1, + "label": "YT", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "YT" + }, + { + "data": [], + "days": [], + "count": 0, + "aggregated_value": 118, + "label": "$$_posthog_breakdown_null_$$", + "filter": { + "insight": "TRENDS", + "properties": [], + "filter_test_accounts": false, + "date_to": "2025-01-20T23:59:59.999999-08:00", + "date_from": "2025-01-06T00:00:00-08:00", + "entity_type": "events", + "interval": "day", + "aggregationAxisFormat": "numeric", + "display": "WorldMap", + "resultCustomizationBy": "value", + "showAlertThresholdLines": false, + "showLegend": false, + "showPercentStackView": false, + "showValuesOnSeries": false, + "smoothingIntervals": 1, + "yAxisScaleType": "linear", + "breakdown": "$geoip_country_code", + "breakdown_type": "event" + }, + "action": { + "days": [ + "2025-01-06T00:00:00-08:00", + "2025-01-07T00:00:00-08:00", + "2025-01-08T00:00:00-08:00", + "2025-01-09T00:00:00-08:00", + "2025-01-10T00:00:00-08:00", + "2025-01-11T00:00:00-08:00", + "2025-01-12T00:00:00-08:00", + "2025-01-13T00:00:00-08:00", + "2025-01-14T00:00:00-08:00", + "2025-01-15T00:00:00-08:00", + "2025-01-16T00:00:00-08:00", + "2025-01-17T00:00:00-08:00", + "2025-01-18T00:00:00-08:00", + "2025-01-19T00:00:00-08:00", + "2025-01-20T00:00:00-08:00" + ], + "id": "$pageview", + "type": "events", + "order": 0, + "name": "$pageview", + "custom_name": null, + "math": "dau", + "math_property": null, + "math_hogql": null, + "math_group_type_index": null, + "properties": {} + }, + "breakdown_value": "$$_posthog_breakdown_null_$$" + } + ], + "timezone": "US/Pacific", + "timings": [] +}