diff --git a/frontend/src/scenes/web-analytics/webAnalyticsLogic.tsx b/frontend/src/scenes/web-analytics/webAnalyticsLogic.tsx
index 226aa5c4f2e7f..31e7b45c835a5 100644
--- a/frontend/src/scenes/web-analytics/webAnalyticsLogic.tsx
+++ b/frontend/src/scenes/web-analytics/webAnalyticsLogic.tsx
@@ -639,7 +639,7 @@ export const webAnalyticsLogic = kea([
[
{
id: PathTab.PATH,
- title: 'Top paths',
+ title: 'Paths',
linkText: 'Path',
query: {
full: true,
@@ -664,7 +664,7 @@ export const webAnalyticsLogic = kea([
},
{
id: PathTab.INITIAL_PATH,
- title: 'Top entry paths',
+ title: 'Entry paths',
linkText: 'Entry path',
query: {
full: true,
@@ -688,8 +688,8 @@ export const webAnalyticsLogic = kea([
},
{
id: PathTab.EXIT_PATH,
- title: 'Top exit paths',
- linkText: 'Exit path',
+ title: 'End paths',
+ linkText: 'End path',
query: {
full: true,
kind: NodeKind.DataTableNode,
@@ -725,7 +725,7 @@ export const webAnalyticsLogic = kea([
tabs: [
{
id: SourceTab.CHANNEL,
- title: 'Top channels',
+ title: 'Channels',
linkText: 'Channel',
query: {
full: true,
@@ -763,7 +763,7 @@ export const webAnalyticsLogic = kea([
},
{
id: SourceTab.REFERRING_DOMAIN,
- title: 'Top referrers',
+ title: 'Referrers',
linkText: 'Referring domain',
query: {
full: true,
@@ -784,7 +784,7 @@ export const webAnalyticsLogic = kea([
{
id: SourceTab.UTM_SOURCE,
- title: 'Top sources',
+ title: 'UTM sources',
linkText: 'UTM source',
query: {
full: true,
@@ -804,7 +804,7 @@ export const webAnalyticsLogic = kea([
},
{
id: SourceTab.UTM_MEDIUM,
- title: 'Top UTM medium',
+ title: 'UTM medium',
linkText: 'UTM medium',
query: {
full: true,
@@ -824,7 +824,7 @@ export const webAnalyticsLogic = kea([
},
{
id: SourceTab.UTM_CAMPAIGN,
- title: 'Top UTM campaigns',
+ title: 'UTM campaigns',
linkText: 'UTM campaign',
query: {
full: true,
@@ -844,7 +844,7 @@ export const webAnalyticsLogic = kea([
},
{
id: SourceTab.UTM_CONTENT,
- title: 'Top UTM content',
+ title: 'UTM content',
linkText: 'UTM content',
query: {
full: true,
@@ -864,7 +864,7 @@ export const webAnalyticsLogic = kea([
},
{
id: SourceTab.UTM_TERM,
- title: 'Top UTM terms',
+ title: 'UTM terms',
linkText: 'UTM term',
query: {
full: true,
@@ -916,44 +916,27 @@ export const webAnalyticsLogic = kea([
tabs: [
{
id: DeviceTab.DEVICE_TYPE,
- title: 'Device types',
+ title: 'Device type',
linkText: 'Device type',
query: {
- kind: NodeKind.InsightVizNode,
+ full: true,
+ kind: NodeKind.DataTableNode,
source: {
- kind: NodeKind.TrendsQuery,
- breakdownFilter: { breakdown: '$device_type', breakdown_type: 'event' },
+ kind: NodeKind.WebStatsTableQuery,
+ properties: webAnalyticsFilters,
+ breakdownBy: WebStatsBreakdown.DeviceType,
dateRange,
- series: [
- {
- event: '$pageview',
- name: 'Pageview',
- kind: NodeKind.EventsNode,
- math: BaseMathType.UniqueUsers,
- },
- ],
- trendsFilter: {
- display: ChartDisplayType.ActionsPie,
- showLabelsOnSeries: true,
- },
+ sampling,
+ limit: 10,
filterTestAccounts,
- properties: webAnalyticsFilters,
},
- hidePersonsModal: true,
- vizSpecificOptions: {
- [ChartDisplayType.ActionsPie]: {
- disableHoverOffset: true,
- hideAggregation: true,
- },
- },
- embedded: true,
},
insightProps: createInsightProps(TileId.DEVICES, DeviceTab.DEVICE_TYPE),
- canOpenInsight: true,
+ canOpenModal: true,
},
{
id: DeviceTab.BROWSER,
- title: 'Top browsers',
+ title: 'Browsers',
linkText: 'Browser',
query: {
full: true,
@@ -973,7 +956,7 @@ export const webAnalyticsLogic = kea([
},
{
id: DeviceTab.OS,
- title: 'Top OSs',
+ title: 'OS',
linkText: 'OS',
query: {
full: true,
@@ -1040,7 +1023,7 @@ export const webAnalyticsLogic = kea([
},
{
id: GeographyTab.COUNTRIES,
- title: 'Top countries',
+ title: 'Countries',
linkText: 'Countries',
query: {
full: true,
@@ -1060,7 +1043,7 @@ export const webAnalyticsLogic = kea([
},
{
id: GeographyTab.REGIONS,
- title: 'Top regions',
+ title: 'Regions',
linkText: 'Regions',
query: {
full: true,
@@ -1080,7 +1063,7 @@ export const webAnalyticsLogic = kea([
},
{
id: GeographyTab.CITIES,
- title: 'Top cities',
+ title: 'Cities',
linkText: 'Cities',
query: {
full: true,