Skip to content

Commit

Permalink
Add new properties to taxonomy
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Jun 20, 2024
1 parent edc6c29 commit f23ec15
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions frontend/src/lib/taxonomy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1036,8 +1036,18 @@ export const CORE_FILTER_DEFINITIONS_BY_GROUP = {
$entry_pathname: {
label: 'Entry pathname',
description: <span>The first pathname visited in this session</span>,
examples: ['/interesting-article?parameter=true'],
},
$end_current_url: {
label: 'Entry URL',
description: <span>The first URL visited in this session</span>,
examples: ['https://example.com/interesting-article?parameter=true'],
},
$end_pathname: {
label: 'Entry pathname',
description: <span>The first pathname visited in this session</span>,
examples: ['/interesting-article?parameter=true'],
},
$exit_current_url: {
label: 'Exit URL',
description: <span>The last URL visited in this session</span>,
Expand All @@ -1058,6 +1068,11 @@ export const CORE_FILTER_DEFINITIONS_BY_GROUP = {
description: <span>The number of autocapture events in this session</span>,
examples: ['123'],
},
$screen_count: {
label: 'Screen count',
description: <span>The number of screen events in this session</span>,
examples: ['123'],
},
$channel_type: {
label: 'Channel type',
description: <span>What type of acquisition channel this traffic came from.</span>,
Expand Down

0 comments on commit f23ec15

Please sign in to comment.