Is it possible to view threads from hprof dump / threads in heap dump

前端 未结 7 1494
粉色の甜心
粉色の甜心 2021-02-06 06:46

I have got a large (5GB) hprof dump, created by application when OutOfMemoryError occurred. (Using XX: HeapDumpOnOutOfMemoryError ).

Unfortunately there

7条回答
  •  温柔的废话
    2021-02-06 06:54

    Eclipse MAT allows you to see the suspect threads in the Leak suspects report. Look for the classes in your application namespace with their line numbers to find how much memory they occupy in heap. This will give you a hint of leaky classes.

提交回复
热议问题