https://www.ibm.com/docs/en/baw/24.0.x?topic=environment-capturing-metrics-monitoring-concurrent-users-activities
Original Message:
Sent: Tue January 06, 2026 05:17 AM
From: Abdelmadjid AMRI
Subject: Concurrent Users
Hello ,
Thank you for your answer.
I would like to obtain the number of concurrent users for each day over a three-month period, along with the names of the users who were connected, in order to detect peak usage.
Is there a way to use the logs or configure tracing in WebSphere to achieve this?
------------------------------
Abdelmadjid AMRI
------------------------------
Original Message:
Sent: Tue January 06, 2026 03:25 AM
From: Muhammad Haris Khan
Subject: Concurrent Users
To find the current sessions online on all application nodes:
select count(online_server_id), online_server_id from bpm_usr_runtime_props where online_status='T' Group by online_server_id;
To find the total number of users who have accesses BPM:
select count(*) from bpm_usr_runtime_props;
This table is available in the BPMDB schema.
And further, you can play with other columns of the table mentioned above. Please provide your feedback on whether the above suggestions worked.
Regards,
------------------------------
Muhammad Haris Khan