怀疑是JVM本机内存泄漏,因此我想跟踪内存。我尝试使用JVM调优标志进行本机跟踪,如下所示,但是我找不到内存泄漏点。java -XX:NativeMemoryTracking=...
怀疑是JVM原生内存泄漏,所以想进行内存跟踪。
我尝试使用 JVM 调整标志进行 Native 跟踪,如下所示,但找不到内存泄漏点。
java -XX:NativeMemoryTracking=detail
可能是因为文档中如下的原因。
NMT in this release does not track third party native code memory allocations and JDK class libraries.
Also, this release does not include NMT MBean in HotSpot for JMC.
还有其他方法可以跟踪 JVM 本机内存吗?