2
votes
1answer
297 views

Why is usage of javascript within visualvm (jhat?) oql sometimes confusing?

I am interested in knowing why visualvm OQL has a problem with the following statement: select filter(heap.objects("java.util.HashMap"), isTrue(it)); function isTrue(object) { return true; } ...
1
vote
1answer
201 views

Trouble with OQL 'unique' function of 'jhat' in Java 1.6.0_24

this is my first posted question. I have a fairly complicated OQL query which lists static fields of classes loaded in our packages. One problem I'm seeing with running the query against 'jhat' of ...
3
votes
1answer
935 views

OQL query to find all instances and sub-instances of a given class refered to from a session

I'm trying to use jhat/OQL to trace a memory leak in our Tomcat container. The question I want to ask is: "Show me all the instances (and sub-instances) of foo.bar.Cacheable class that are reachable ...