vote up 0 vote down star

How to redirect verbose garbage collection output to a file? Suns site shows an example for unix but it doesn't work for windows.

flag

58% accept rate

1 Answer

vote up 4 vote down check

From the output of java -X:

    -Xloggc:    log GC status to a file with time stamps

Documented here:

-Xloggc:file

Report on each garbage collection event, as with -verbose:gc, but log this data to file. In addition to the information -verbose:gc gives, each reported event will be preceeded by the time (in seconds) since the first garbage-collection event.

Always use a local file system for storage of this file to avoid stalling the JVM due to network latency. The file may be truncated in the case of a full file system and logging will continue on the truncated file. This option overrides -verbose:gc if both are given on the command line.

So the output looks something like this:

0.590: [GC 896K->278K(5056K), 0.0096650 secs]
0.906: [GC 1174K->774K(5056K), 0.0106856 secs]
1.320: [GC 1670K->1009K(5056K), 0.0101132 secs]
1.459: [GC 1902K->1055K(5056K), 0.0030196 secs]
1.600: [GC 1951K->1161K(5056K), 0.0032375 secs]
1.686: [GC 1805K->1238K(5056K), 0.0034732 secs]
1.690: [Full GC 1238K->1238K(5056K), 0.0631661 secs]
1.874: [GC 62133K->61257K(65060K), 0.0014464 secs]
link|flag
thank you very much for the great answer – djangofan Jul 21 at 21:28
java --Xloggc:firstgen.log -Xloggc:secondgen.log doesn't seem to work by the way. – djangofan Jul 21 at 21:31
Also, this doesnt increase the output, as I expected. There are no additional details after using these arguments: -Xloggc:gc.log -XX:-PrintGCDetails – djangofan Jul 21 at 21:39
"-XX:+PrintGCDetails" seems to work fine with -Xloggc. I don't know why the Sun page has a - instead of a +. – mmyers Jul 21 at 21:47
that worked. thanks! now, i use these options: set JAVA_OPTS=%JAVA_OPTS% -Xloggc:logs\gc.log -XX:+PrintGCDetails -XX:MaxPermSize=128m – djangofan Jul 23 at 19:57

Your Answer

Get an OpenID
or

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