My application has a lot of garbage collection and I would like to analyze that. What I want to see is which objects are being garbage collected. I think that will give me idea where to look for optimization (adding cache or whatever).
Is there an option to print detailed GC information, including how many objects from each class were garbage collected?
I'm using the G1GC, if that's important.
Thanks!
Oracle's JFR (Java Flight Recorder, or Java Mission Control) is a great tool to help in this task - it shows the load on GC per object - meaning how many objects from each class are generated (this goes together with the objects that are collected). Very recommended.