public interface GarbageCollectorStats
Shows major/minor collection counts and consumed CPU times.
MemoryStats| Modifier and Type | Method and Description |
|---|---|
long |
getMajorCollectionCount()
Returns major collection count.
|
long |
getMajorCollectionTime()
Returns total major collection time in ms.
|
long |
getMinorCollectionCount()
Returns minor collection count.
|
long |
getMinorCollectionTime()
Returns total minor collection time in ms.
|
long |
getUnknownCollectionCount()
Returns collection count which cannot be identified as major or minor.
|
long |
getUnknownCollectionTime()
Returns total collection time which cannot be identified as major or minor.
|
long getMajorCollectionCount()
Major collection is identified by matching heap memory region name with known names. If a collection cannot be matched then it's reported as unknown count.
getUnknownCollectionCount()long getMajorCollectionTime()
Major collection is identified by matching heap memory region name with known names. If a collection cannot be matched then it's reported as unknown count.
getUnknownCollectionTime()long getMinorCollectionCount()
Minor collection is identified by matching heap memory region name with known names. If a collection cannot be matched then it's reported as unknown count.
getUnknownCollectionCount()long getMinorCollectionTime()
Minor collection is identified by matching heap memory region name with known names. If a collection cannot be matched then it's reported as unknown count.
getUnknownCollectionTime()long getUnknownCollectionCount()
long getUnknownCollectionTime()
Copyright © 2019 Hazelcast, Inc.. All rights reserved.