Hey,
At work we found that on some instances (particulary the slow ones) we have a different behaviour, acquired at the reboot.
We guess a cache is not initialized correctly, or maybe a concurrency problem... Anyway it's not reproductible in any other env than production.
We actually don't have loggers to activate... it's an old component...
Thus i'd like to know if there are tools that can help us to see the different objets present in the JVM memory in order to check the content of the cache...
Thank you!
Edit:
I don't have access to the production servers directly, our app server is weblogic 10, i don't have a pointer to the object but i know the cache object type...
Edit2:
Our servers are running on jre 1.5, is it possible to use jmap? Can't find it in a jdk5 :( Also, remote debugging could be nice but we can't for security reasons...
Edit3:
Actually jhat + VisualVM is ok for me, i found my object in dump but i'm not able to read the hashmap (object containing about 60000 items) properly... Is there a tool to read a concurrenthashmap in a friendly way? i need to find the value of a key (or its existence in the map) without browsing manually the 60k records. Actually i read on eclipse MAT forum that it's also not possible with it...