feat(api): EE fixed No of pages count widget
This commit is contained in:
parent
51c75657ab
commit
b8367d87f8
1 changed files with 2 additions and 1 deletions
|
|
@ -2472,7 +2472,8 @@ def __get_user_activity_avg_visited_pages(ch, project_id, startTimestamp, endTim
|
||||||
ch_query = f"""SELECT COALESCE(CEIL(avgOrNull(count)),0) AS value
|
ch_query = f"""SELECT COALESCE(CEIL(avgOrNull(count)),0) AS value
|
||||||
FROM (SELECT COUNT(session_id) AS count
|
FROM (SELECT COUNT(session_id) AS count
|
||||||
FROM pages {"INNER JOIN sessions_metadata USING(session_id)" if len(meta_condition) > 0 else ""}
|
FROM pages {"INNER JOIN sessions_metadata USING(session_id)" if len(meta_condition) > 0 else ""}
|
||||||
WHERE {" AND ".join(ch_sub_query)}) AS groupped_data
|
WHERE {" AND ".join(ch_sub_query)}
|
||||||
|
GROUP BY session_id) AS groupped_data
|
||||||
WHERE count>0;"""
|
WHERE count>0;"""
|
||||||
params = {"project_id": project_id, "startTimestamp": startTimestamp, "endTimestamp": endTimestamp,
|
params = {"project_id": project_id, "startTimestamp": startTimestamp, "endTimestamp": endTimestamp,
|
||||||
**__get_constraint_values(args)}
|
**__get_constraint_values(args)}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue