I wanted to take the dump of the Permgen of a application server.

I do not want to use -XX:+TraceClassLoading -XX:+TraceClassUnloading as i do not want to restart the server, Neither i want to use jconsole.

I there any tool like jmap(used to heap dump didnt find any option for permgen) to get the permgen so that i can supply only the pid.

link|improve this question
Did this help you solve your problem Vikas? – Amir Afghani Nov 2 '10 at 18:48
I have tried this earlier it was saying that invalid option and showing up the usage which says only -histo and -dump (heap dump) are allowed.I am using the jmap inside jdk/bin is this the right one – Vikas Madhusudana Nov 3 '10 at 3:09
The permstat option is not available on MS Windows. – kschneid Nov 3 '10 at 3:26
feedback

3 Answers

jmap -permstat <pid>

is going to produce an output like that :

30337 intern Strings occupying 2746200 bytes.
class_loader    classes bytes   parent_loader   alive?  type

<bootstrap> 2031    7253392   null      live    <internal>
0x517474f0  1   1760      null      dead    sun/reflect/DelegatingClassLoader@0x43f95d38
0x4f83f670  1   1744    0x4ebfb8e8  dead    sun/reflect/DelegatingClassLoader@0x43f95d38
[...]

total = 287 10020   35889952        N/A     alive=3, dead=284       N/A  

This is not a full dump, but doing that is going to allow you to do some investigation.

I am still looking on how to find more information.

link|improve this answer
feedback
jmap -permstat <pid>
link|improve this answer
feedback

It is not possible to 'dump permgen'.

You can analyze standard heap dump to shed some light into on your permanent generation as described here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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