BPM, Workflow, and Case

BPM, Workflow, and Case

Come for answers. Stay for best practices. All we’re missing is you.

 View Only
  • 1.  Concurrent Users

    Posted 2 days ago

    Hello ,

    I wanted to obtain the number of concurrent users for IBM BPM BAW. I found the code CWLLG1088I, and I was able to retrieve the username connected, but I could not determine the duration of the user's connection in order to know exactly which users were connected at the same time.

    Do you have any suggestions or necessary configurations to accurately obtain the number of concurrent users?

    Best Regards.

    Abdelmadjid Amri.



    ------------------------------
    Abdelmadjid AMRI
    ------------------------------


  • 2.  RE: Concurrent Users

    Posted 21 hours ago
    Edited by Muhammad Haris Khan 21 hours ago
    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
    ------------------------------

    Hello ,

    I wanted to obtain the number of concurrent users for IBM BPM BAW. I found the code CWLLG1088I, and I was able to retrieve the username connected, but I could not determine the duration of the user's connection in order to know exactly which users were connected at the same time.

    Do you have any suggestions or necessary configurations to accurately obtain the number of concurrent users?

    Best Regards.

    Abdelmadjid Amri.



    ------------------------------
    Abdelmadjid AMRI
    ------------------------------



  • 3.  RE: Concurrent Users

    Posted 15 hours ago

    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
    ------------------------------