On Alfresco Community (5.2) is there a way to monitor the number of concurrent user sessions? One of our instances is getting low performance, and I suspect it is due to high user load. I would like to confirm this assumption.
Thanks!
You can use this addon:
This will allow you to check concurrent user sessions and many other parameters in your system.
You can get the number of users currently logged in by TicketComponent.
private TicketComponent ticketComponent;
Set<String> currentUsers = ticketComponent.getUsersWithTickets(true);
System.out.println("Number of logged in users : "+currentUsers.size());
Regards,
Kintu
Using support tool addOn would be a great option as Angel mentioned above. We used a custom webscript to get the ticket count when support tools were not available with older version of alfresco (Sort of what Kintu mentioned above).
You can check here as well:
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.