example:
GC_CONCURRENT freed 1926K, 56% free 4739K/10660K, paused 2ms+3ms, total 39ms
My guesses:
- freed = memory freed by the GC, easy enough.
- free = current amount of the app's allocated heap that is free?
- paused = this is where I don't know.. obviously it represents the pause caused by the GC stopping execution, but why two numbers, and what does each mean?
- total? total of what? 2ms + 3ms != 39ms, so I'm not sure.