feat: add host

This commit is contained in:
Giuseppe Pagano 2024-04-17 22:41:14 +02:00
parent a38baa50af
commit 7152b0b76d
11 changed files with 61 additions and 5 deletions

View file

@ -31,7 +31,7 @@ export const FILTER_RANGE = 'filter-range';
export const FILTER_REFERRERS = 'filter-referrers';
export const FILTER_PAGES = 'filter-pages';
export const UNIT_TYPES = ['year', 'month', 'hour', 'day'];
export const EVENT_COLUMNS = ['url', 'referrer', 'title', 'query', 'event'];
export const EVENT_COLUMNS = ['url', 'referrer', 'title', 'query', 'event', 'host'];
export const SESSION_COLUMNS = [
'browser',
@ -42,11 +42,13 @@ export const SESSION_COLUMNS = [
'country',
'region',
'city',
'host',
];
export const FILTER_COLUMNS = {
url: 'url_path',
referrer: 'referrer_domain',
host: 'hostname',
title: 'page_title',
query: 'url_query',
os: 'os',