Whats the difference between heap usage and total object range?
The heap usage is the sum of the sizes of all the objects in the heap dump. So it’s the total amount of heap space used. Note: Heap dumps aren’t guaranteed to show absolutely everything in the heap. The total object range is the size in bytes from the start of the first object to the end of the last object. This gives you an idea of the address range of the objects in the heap. Note that, depending on JVM, there may be multiple heaps, or the heap may not be a contiguous block of address space.