How to see type of Garbage Collector in Java Mission Control?
I investigated all tabs including MBeans Browser, but didn't find the type of GC. I can only suppose it by memory regions enumerated on the Memory tab.
How to see type of Garbage Collector in Java Mission Control?
I investigated all tabs including MBeans Browser, but didn't find the type of GC. I can only suppose it by memory regions enumerated on the Memory tab.
Looks like JMC doens't show Garbage Collector type. So I set GC type explicitly and looked at the Memory
tab on the Active Memory Pools
section.
GC type: Garbarge-First (G1)
JVM option: -XX:+UseG1GC
Poll names: G1 Eden Space
, G1 Old Gen
, G1 Servivor Space
GC type: Parallel
JVM option: -XX:+UseParallelGC
Poll names: PS Eden Space
, PS Old Gen
, PS Servivor Space
GC type: Concurrent Mark Sweep (CMS)
JVM option: -XX:+UseConcMarkSweepGC
Poll names: Par Eden Space
, CMS Old Gen
, Par Servivor Space
...to be continued
Click on Memory
tab and then GC Configuration
(Bottom of the window) you will see the entire gc config here including GC Types, Parallel GC Threads, Concurrent GC Threads etc., The screenshot is fom JMC 5.5.0