java - GC log rotation data lose on application restart - Stack Overflow
I use this jvm option in order to create gc logs and enable rolling:
$ java -Xloggc:gc.log -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCTimeStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 XX:GCLogFileSize=128K
However, I have a problem when I restart my application. After a restart, the first log file gc.log.0
is overwritten and the data of that file is not rolled to gc.log.1
and hence lost.
I'm wondering if I'm right and if there's a solution for this.
Read full article from java - GC log rotation data lose on application restart - Stack Overflow
No comments:
Post a Comment