Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to diagnose a java.lang.OutOfMemoryError: PermGen Space error when running on Sun's Hotspot JVM, and would like to know how much PermGen space my program is using at various points. Is there a way of finding out this information programmatically?

share|improve this question

2 Answers

up vote 25 down vote accepted

You can use something like this:

iter = ManagementFactory.getMemoryPoolMXBeans().iterator();
while (iter.hasNext())
{
    MemoryPoolMXBean item = (MemoryPoolMXBean) iter.next();
    name = item.getName();
    type = item.getType();
    usage = item.getUsage();
    peak = item.getPeakUsage();
    collections = item.getCollectionUsage();
}

This will give you all types of memory. You are interested in "Perm Gen" type.

share|improve this answer
1  
Thanks, this works. I am taking the MemoryPoolMXBean where name.equalsIgnoreCase("Perm Gen"). – Simon Nickerson Mar 30 '09 at 15:14
Needed info, Thank you kgiannakakis. – vissu Jul 12 '12 at 6:30

Try ManagementFactory.getMemoryPoolMXBeans().

share|improve this answer
Thank you for getting me started. – Simon Nickerson Mar 30 '09 at 15:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.