cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to get user count & user session count using usql

tarun_kumar_aga
Organizer

Hi,

I am trying to gather user count & user session count using usql,but the metrics it was giving is not matching.

Can someone help me with the proper query to get these metrics.

Thanks,

1 REPLY 1

pahofmann
DynaMight Guru
DynaMight Guru

For the user session count you can use:

SELECT Count(*) FROM usersession


For user count use the following for tagged users:

SELECT Count(DISTINCT(userid)) FROM usersession

or this one if you want all users, including anonymous users:

SELECT Count(DISTINCT(internalUserId)) FROM usersession


Dynatrace Certified Master, AppMon Certified Master - Dynatrace Partner - 360Performance.net

Featured Posts