Package org.apache.pulsar.common.stats
Class AllocatorStats.PoolArenaStats
- java.lang.Object
-
- org.apache.pulsar.common.stats.AllocatorStats.PoolArenaStats
-
- Enclosing class:
- AllocatorStats
public static class AllocatorStats.PoolArenaStats extends java.lang.ObjectPool arena statistics.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<AllocatorStats.PoolChunkListStats>chunkListslongnumActiveAllocationslongnumActiveHugeAllocationslongnumActiveNormalAllocationslongnumActiveSmallAllocationslongnumActiveTinyAllocationslongnumAllocationsintnumChunkListslongnumDeallocationslongnumHugeAllocationslongnumHugeDeallocationslongnumNormalAllocationslongnumNormalDeallocationslongnumSmallAllocationslongnumSmallDeallocationsintnumSmallSubpageslongnumTinyAllocationslongnumTinyDeallocationsintnumTinySubpagesjava.util.List<AllocatorStats.PoolSubpageStats>smallSubpagesjava.util.List<AllocatorStats.PoolSubpageStats>tinySubpages
-
Constructor Summary
Constructors Constructor Description PoolArenaStats()
-
-
-
Field Detail
-
numTinySubpages
public int numTinySubpages
-
numSmallSubpages
public int numSmallSubpages
-
numChunkLists
public int numChunkLists
-
tinySubpages
public java.util.List<AllocatorStats.PoolSubpageStats> tinySubpages
-
smallSubpages
public java.util.List<AllocatorStats.PoolSubpageStats> smallSubpages
-
chunkLists
public java.util.List<AllocatorStats.PoolChunkListStats> chunkLists
-
numAllocations
public long numAllocations
-
numTinyAllocations
public long numTinyAllocations
-
numSmallAllocations
public long numSmallAllocations
-
numNormalAllocations
public long numNormalAllocations
-
numHugeAllocations
public long numHugeAllocations
-
numDeallocations
public long numDeallocations
-
numTinyDeallocations
public long numTinyDeallocations
-
numSmallDeallocations
public long numSmallDeallocations
-
numNormalDeallocations
public long numNormalDeallocations
-
numHugeDeallocations
public long numHugeDeallocations
-
numActiveAllocations
public long numActiveAllocations
-
numActiveTinyAllocations
public long numActiveTinyAllocations
-
numActiveSmallAllocations
public long numActiveSmallAllocations
-
numActiveNormalAllocations
public long numActiveNormalAllocations
-
numActiveHugeAllocations
public long numActiveHugeAllocations
-
-