GCViewer
GCViewer copied to clipboard
Detailed CSV file
Currently the CSV formats have only limited information. So add a new CSV option that outputs a lot more data.
I'm actually working on this feature and I'll create a PR shortly. To give you an impression of the columns:
out.println("Time,Pause(sec),GC-Type,Simple-GC-Type,generation, " +
"YoungSizeBefore(K),YoungSizeAfter(K),YoungSizeMax(K),YoungCollected(K),YoungAllocated(K),AllocationRate(K/sec)" +
"TotalSizeBefore(K),TotalSizeAfter(K),TotalSizeMax(K),TotalCollected(K),Promoted(K),PromotionRate(K/sec)," +
"TenuredSizeBefore(K),TenuredSizeAfter(K),TenuredSizeTotal(K)");
I have questions about the interpretation of some values. So if you could ping me at peter at hazelcast dot com, that would be great.