The activity page (for a single day) displays the Top Browser Domains
. However the web buckets don’t have a browser domain key, instead they have a url key. This makes it impossible to use the web query interface to list the all time top browser domains.
So, my feature request is to add a computed browser domain key called domain
The following code should then return the top browser domains
ff_events = query_bucket(find_bucket('aw-watcher-web-firefox'));
events = merge_events_by_keys(ff_events, ['domain']);
events = sort_by_duration(events);
RETURN = events;