• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Help in interpreting logs

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


In my logs I am getting the following messages each day. What do they mean? Are sessions lasting 30 minutes? Does that mean memory is taken up the for the 30 min? How do you work out much?

Nov 5, 2011 11:21:22 PM org.apache.catalina.core.ApplicationContext log
INFO: SessionListener: sessionCreated('5909F4F5B107F15177F8F9A8C3BCDC53')
Nov 5, 2011 11:33:34 PM org.apache.catalina.core.ApplicationContext log
INFO: SessionListener: sessionCreated('74C1BD2F508E52DED6A7E61C79C31712')
Nov 5, 2011 11:51:52 PM org.apache.catalina.core.ApplicationContext log
INFO: SessionListener: sessionDestroyed('5909F4F5B107F15177F8F9A8C3BCDC53')

I am having intermittent Java heap size problems and maybe this has something to do with it.
 
Saloon Keeper
Posts: 7585
176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Are sessions lasting 30 minutes?


That might be the default, or your web app might be configured that way (in web.xml).

Does that mean memory is taken up the for the 30 min?


Yes. Not much, though, if you don't put anything into the session.

Note that JSP pages automatically create sessions for each user unless you specifically tell them not to (via <%@ page session="false" %>).
 
Greg Soulsby
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Tim, sounds like I can relax about this particular message.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic