Tagged Questions
0
votes
1answer
9 views
OQL: Tomcat threads with retained heap
I'm having trouble with joining two OQL statements. Since the sub select syntax in OQL is a little quirky could someone help me out?
Select 1
SELECT thread.name.toString(), thread.@retainedHeapSize
...
0
votes
0answers
103 views
eclipse mat oql
How can I with Eclipse MAT using OQL fetch all objects of the specific class that has specific incoming links?
For example I have a set of java.lang.String objects some of them are referenced from ...
0
votes
2answers
284 views
How to use “AND operator (&&)” in OQL in MAT Eclipse
I am working on performance tuning of a java rmi application and
using OQL to execute below query :
select tpoint.host.value.toString() from sun.rmi.transport.tcp.TCPEndpoint tpoint
where ...
1
vote
1answer
878 views
OQL syntax for counting objects matching criteria
how can I count objects in Eclipse MAT using OQL syntax?
This doesn't work :
SELECT count(a) FROM org.hibernate.engine.EntityEntry a WHERE (toString(a.entityName)="my.pojo")
(I want to count the ...
2
votes
2answers
583 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
...