I am analysing a heap dump using eclipse memory analyzer tool. I am trying to list the SocktChannels and their remote addresses. I am unable to see their IP Addresses and the port. I use the following OQL :
SELECT x.toString() FROM sun.nio.ch.SocketChannelImpl x
The same string is available when I live debug the application in eclipse - java.nio.channels.SocketChannel[connected local=/127.0.0.1:3033 remote=/127.0.0.1:54379] Is there a way to get this information?