The garbage collection graph is a percentage of GC time over elapsed
time for each minute, and the value is for all the JVM.
In general, the value of "% GC time" is 0, which shows that the GC is
going well and has no problem to clean the heap in negligible time.
So in fact, it's OK if the GC graph is empty with a mean of 0.
When your server is under load, you may see small spikes in this
graphic. It shows that the GC has had some more work to clean the heap
(for example, 3 seconds over a minute, which is a spike at 5%).
When there are more and more spikes or if some values are over 20% for
example, the GC is near saturation.
You should probably know that, if the GC become saturated, your server
would be unresponsive for many seconds or for minutes (that would be a
problem).
bye,
Emeric
Le 03/02/2012 01:35, eneilsen a �crit :