16 Apr 2019 01:20 PM
Hello,
There is no documentation for this at all.
How can i request very very simple request:
I need count user sessions for today only for application "some_application"
Not working this and others same variants:
SELECT * FROM usersession WHERE usersession.application.displayName = "some_application"
Regards,
Alexander
Solved! Go to Solution.
16 Apr 2019 01:43 PM
select count(*) from usersession where userType = 'REAL_USER' and useraction.application = 'easyTravel Frontend'
You have to use useraction.application as a user session can cross more than one application.
16 Apr 2019 01:58 PM
Alexander, Thank you. I didn`t try useraction.application. (I think that only for user actions i need to use useraction table)
Regards,
Alexander
16 Apr 2019 02:09 PM
Here is the link to detailed documentation on that
regards,
Kulwinder S.
16 Apr 2019 03:32 PM
Yes, but it is drop in the ocean.
Regards,
Alexander