JaroslavTulach opened a new pull request #3518: URL: https://github.com/apache/netbeans/pull/3518
I've created a simple library to generate `.hprof` files: [HeapDump](https://www.graalvm.org/tools/javadoc/org/graalvm/tools/insight/heap/HeapDump.html). It follows the [Java Profiler Heap Dump Format](http://hg.openjdk.java.net/jdk6/jdk6/jdk/raw-file/tip/src/share/demo/jvmti/hprof/manual.html) specification, however it allows more than regular JVMs do. Regular JVMs always dump the whole heap in a single round, while the [HeapDump](https://www.graalvm.org/tools/javadoc/org/graalvm/tools/insight/heap/HeapDump.html) allows one to generate _multiple segments_. There already is support for reading these multisegment files in the Apache NetBeans Profiler library - it just isn't exposed in the heapwalker UI. This PR fixes that. The fix isn't "fancy", but it does its job. When an additional segment is detected, there is a little _link_ in the UI to open it in a new window. Simple, but functional. I'd be delighted if the support for _multisegment_ `.hprof` files landed in the NetBeans 13. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
