I'm working on a monitoring project; we have the monitoring software working and recollecting the metrics from the server. Everything is working fine, but we need some information about the JVM Memory Usage details. We have some columns with different memory types. We need to know what these are:
- Heap
- Non Heap
- Usage
- Peak
- Coll
We've got maximums for all these columns (HeapMax, NonHeapMax, UsageMax, PeakMax and CollMax) and also used (HeapUsed, NonHeapUsed, UsageUsed, PeakUsed and CollUsed)
We know what Heap and NonHeap is, but we don't know about Usage, Peak and Coll.
Does anybody know what they are?
Thank you in advance.