Active user sessions in vCloud Director
Unlike user Sessions in vCenter there is no method to check in vCloud GUI, but we can get the information from the vCloud DB.
Requirement: DB Access to the vCloud DB
Query to find the number of Active users: Run the below query against vCloud DB.
select username,fullname,email,date_last_accessed from usr,user_session where usr.user_id = user_session.user_id;
Output:
Awesome Karthic. This article helped me resolve the issue today.