08 Sep 2020 03:31 PM
It is possible to get bounce rate for a specific user action ( load page or xhr action).
I want to create a custom chart with bounce rate calculated for user action
Solved! Go to Solution.
08 Sep 2020 04:19 PM
What you can do in USQL is the following query: SELECT useraction.name, COUNT(bounce) FROM usersession WHERE useraction.application='YOURAPPLICATION' GROUP BY useraction.name. You can also narrow it down with an AND seraction.name=YOURUSERACTION
And then chart and pin it to a dashboard
Notes:
09 Sep 2020 12:43 PM
Thanks! Thats what I'm looking for. Unfortunately, my query contains too many bounces(
06 May 2021 04:34 PM
Below is the query to get bounce in USQL -
SELECT useraction.name AS "UserAction Name", count(bounce) AS Count FROM usersession WHERE useraction.application='Test' AND bounce IN (true) GROUP BY useraction.name
we need to add bounce to True to get only useraction that were bounced.