JHAT has an Object Query Language function which can filter objects in the heap analysis based using the default JavaScript engine. Since the introduction of Nashorn some of the samples in the help page are broken, and the syntax change has potentially broken end user queries too.
E.g. a sample query from the help page [select filter(heap.classes(), "/java.net./(it.name)")] will fail since this is not supported Nashorn ECMAScript syntax. The correct syntax would be [select filter(heap.classes(), "it.name.match(/java.net./)")]
E.g. a sample query from the help page [select filter(heap.classes(), "/java.net./(it.name)")] will fail since this is not supported Nashorn ECMAScript syntax. The correct syntax would be [select filter(heap.classes(), "it.name.match(/java.net./)")]