• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Finding number of users currenlty on the site

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We are using BEA weblogic8.0 with apache and had two questions

1) How do i figure out number of users on the site at a point of time, we are getOpenSessionsCurrentCount API to figure out active sessions count however cannot corelate this with number of users as one user can open up more than one sessions

2)We are seeing a weird behaviour where getOpenSessionsCurrentCount value is very high on all managed servers even if the load during that is not high during that time, idle threads on each servers are looking good. Session timeout value is set to 15 minutes, Any ideas??

thanks a lot
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Whe user login in the system you should log a message for the login user
and when user logout from the system, then again you should the log the message for logout user.

Now you can easily track the login users in the system.
reply
    Bookmark Topic Watch Topic
  • New Topic