You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* API v2: fix returning buckets outside of queried range
* For time:hour and time:minute, sessions are smeared using time_slots.
The fix is to filter out time_slots that fall outside of the utc boundaries
* For any other time dimension, there's no session smearing, but since
sessions are put into time buckets by the last event timestamps, the
query might return buckets that are outside of the query time range.
The fix is to clamp those sessions into the last bucket instead.
* allow time dimensions when querying views_per_visit
* update changelog
* stop generating bad timeslots instead
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
6
6
7
7
### Added
8
8
9
+
- Allow querying `views_per_visit` with a time dimension in Stats API
9
10
- Add `bounce_rate` to page-filtered Top Stats even when imports are included, but render a metric warning about imported data not included in `bounce_rate` tooltip.
10
11
- Add `time_on_page` to page-filtered Top Stats even when imports are included, unless legacy time on page is in view.
11
12
- Adds team_id to query debug metadata (saved in system.query_log log_comment column)
@@ -21,6 +22,7 @@ All notable changes to this project will be documented in this file.
21
22
22
23
### Fixed
23
24
25
+
- Fixed Stats API timeseries returning time buckets falling outside the queried range
24
26
- Fixed issue with all non-interactive events being counted as interactive
25
27
- Fixed countries map countries staying highlighted on Chrome
0 commit comments