08-13-2019 02:22 AM
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!
08-13-2019 03:31 AM
You can use this addon:
This will allow you to check concurrent user sessions and many other parameters in your system.
08-13-2019 03:39 AM
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
08-13-2019 09:02 AM
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:
Explore our Alfresco products with the links below. Use labels to filter content by product module.