JEP 271: Unified GC Logging
Kirk Pepperdine
kirk at kodewerk.com
Tue Sep 29 08:21:00 UTC 2015
> On Sep 28, 2015, at 5:22 PM, Staffan Friberg <sfriberg at cloudera.com> wrote:
>
>
> On 09/25/2015 02:39 AM, Bengt Rutisson wrote:
>>
>>
>> On 2015-09-24 19:02, Kirk Pepperdine wrote:
>>> Hi Bengt,
>>>
>>>>
>>>>>
>>>>>
>>>>> For example, if you are not interested in the timing of the different phases, but still want to know the eden/survivor usage you can run with -Xlog:gc,gc+heap=debug and you get this information for each GC:
>>>>>
>>>>> [0,771s][info ][gc ] GC#14 start [young, G1 Evacuation Pause]
>>>>> [0,788s][debug ][gc,heap] GC#14 Eden: Used before: 15,0M Used after: 0,0B Capacity: 14,0M
>>>>> [0,788s][debug ][gc,heap] GC#14 Survivor: Used before: 3072,0K Used after: 3072,0K Capacity: 3072,0K
>>>>> [0,788s][debug ][gc,heap] GC#14 Heap: Used before: 111,2M Used after: 97,1M Capacity: 128,0M
>>>>> [0,788s][info ][gc ] GC#14 end [111,2M->97,1M(128,0M)] [16,651 ms]
Hi Bengt,
Some comments. Can you simply combine the information in the 4 lines into one line as follows.
>>>>> [0,788s][info ][gc ] GC#14 [18432K->3072K(17408K)] [114893K->99430K(131072K)] [16,651 ms]
Collections of Eden should leave it empty hence the 3072K residual must be in survivor. IMO, I'd say that this is the minimal amount of information that I’d like to see in a GC log. With total heap you can calculate all of the remaining residuals. Since this line should be the last line in the information printed for this collection you don’t really need the end tag. Same comment about the start tag. Numbers in K don’t need decimal points/commas so that eases the internationalization issue. If you want the breakdown in debug mode I’d say why not. However I’d be concerned about what other logging gets carried when you turn on debug mode (the ugly side effect of levels).
Regards,
Kirk
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 496 bytes
Desc: Message signed with OpenPGP using GPGMail
URL: <https://mail.openjdk.org/pipermail/hotspot-gc-dev/attachments/20150929/823f0ca9/signature.asc>
More information about the hotspot-gc-dev
mailing list