-
Notifications
You must be signed in to change notification settings - Fork 156
Replies: 2 comments · 6 replies
-
@lalaorya Are you able to upload you GC log here for testing? |
Beta Was this translation helpful? Give feedback.
All reactions
-
|
Beta Was this translation helpful? Give feedback.
All reactions
-
I have intercepted a part of it, which I think is enough for test |
Beta Was this translation helpful? Give feedback.
All reactions
-
The PrintHeapAtGC output is ignored as the data is redundant. A summary of to/from space is in the Survivor events. Eden is always empty after an evacuating collection. The Young gen events all contain the occupancy prior to the collection. For Eden, you just need to apply the math. |
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
@kcpeppe - so we should warn the user not to use that flag if we detect it? |
Beta Was this translation helpful? Give feedback.
All reactions
-
@kcpeppe Thank you for your response |
Beta Was this translation helpful? Give feedback.
All reactions
-
The parsers are not bothered by things that they don’t understand so I’ve
not felt a need to “warn” people but I guess one could.
…On Thu, Jul 21, 2022 at 10:46 lalaorya ***@***.***> wrote:
@kcpeppe <https://github.com/kcpeppe> Thank you for your response
—
Reply to this email directly, view it on GitHub
<#225 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAE2NJZ6NUBAJHDQU4XAIQ3VVEE77ANCNFSM53U7GXBA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
All reactions
-
I think it's good for developer experience that the tool guides them to use the most effective flags. |
Beta Was this translation helpful? Give feedback.
-
I tried to parse the following gc log
The information I want to get is the memory usage of the eden, from, and to areas before and after gc, but I didn't find a suitable jvm event. Looking at the source code I found that the parsing process is done in behavioral units, so gctoolkit can't parse this log format above.
I am not sure if this is the right idea for me and I hope I can get an answer.
Beta Was this translation helpful? Give feedback.
All reactions