Tagged Questions
0
votes
0answers
177 views
How to do embedded query using OQL in MAT Eclipse
I can get all Thread objects by using query as below
SELECT OBJECTS dominators(s) FROM java.lang.Thread s
then if I want to do further analysis of the returned result objects, the OQL I think ...
2
votes
1answer
999 views
how to sum @retainedHeapSize with oql in the Eclipse Memory Analyzer Tool
Have you used MAT(Memory Analyzer Tool) from eclipse.
it's really cool.(1.5G heap dump file kill jhat, ibm's heap dump analyzer with OOME).
MAT is alive and fast and beautiful and powerful.
I wonder ...
2
votes
2answers
561 views
get static fields of a class in a heap dump in OQL
I have a heap dump and I'm using Eclipse MAT, though I suppose this should work through visualvm or whatever OQL client.
We can select fields of all instances of a class by doing something like
...