Use the Memory Analyzer to analyze productive heap dumps with hundreds of millions of objects, quickly calculate the retained sizes of objects, see who is preventing the Garbage Collector from collecting objects, run a report to automatically extract leak suspects. http://www.eclipse.org/mat/
3
votes
1answer
284 views
1
vote
1answer
119 views
Service using too much memory in android resulting Force stopping
In my application,from a Service, i am entering data into database and collecting those datas in some Bean class object in a repeated time interval using a Timer. I am using that instance in my ...
1
vote
0answers
107 views
Using the Eclipse Memory Analyzer, how can I compute memory usage per webapp?
Using the Eclipse Memory Analyzer (1), I can see in general what classes are consuming memory, but I would like to know which webapp is responsible for how much memory. If I just search the dominator ...
0
votes
1answer
14 views
eclipse memory analyzer showing garbage value
I am using Eclipse Helios 3.6.2. I use it to do Android development using the ADT plugin. Recently I tried to check for memory leaks within an Android application that I have developed. For this I ...
0
votes
1answer
84 views
eclipse memory analyzer doesn't open
I installed eclipse memory analyzer (mat) and followed the tutorial
from the official site but the .hprof file open in a standard text editor
and not in mat as I expected.
I'm probably missing ...
0
votes
0answers
29 views
Can the memory use graph in Eclipse for Android be changed to show allocation bytes, not allocation count?
Eclipse's memory analyzer for Android has a handy dandy little graph that shows you the number of allocations by size class; for example, I am looking at something that has 510 24-byte arrays, and 60 ...
0
votes
0answers
83 views
Heap dump analysis [closed]
I collected the heap dump and am trying to analyze from memory using the analyiser tool. But I was unable to find the problematic class/method.
It's only showing that char datatype is taking up 40% ...
0
votes
1answer
113 views
Eclipse Memory Analyzer: How to import analyze result from remote MAT by ParseHeapDump.sh?
I have a large heap dump file in the remote server. And I run MAT's ParseHeapDump.sh file remotely. How can I import those analyzed files (dump.*.index) to my local MAT? I don't want to download the ...
0
votes
1answer
51 views
Getting more details on a specific memory leak
My memory leak looks like this:
Having not that much experience with the Eclipse Memory Analyzer i wonder if it can answer those two questions:
What's the source code position where most of those ...