public interface PoolArenaMetric extends SizeClassesMetric
Modifier and Type | Method and Description |
---|---|
List<PoolChunkListMetric> |
chunkLists()
Returns an unmodifiable
List which holds PoolChunkListMetric s. |
long |
numActiveAllocations()
Return the number of currently active allocations.
|
long |
numActiveBytes()
Return the number of active bytes that are currently allocated by the arena.
|
long |
numActiveHugeAllocations()
Return the number of currently active huge allocations.
|
long |
numActiveNormalAllocations()
Return the number of currently active normal allocations.
|
long |
numActiveSmallAllocations()
Return the number of currently active small allocations.
|
long |
numActiveTinyAllocations()
Deprecated.
Tiny allocations have been merged into small allocations.
|
long |
numAllocations()
Return the number of allocations done via the arena.
|
int |
numChunkLists()
Returns the number of chunk lists for the arena.
|
long |
numDeallocations()
Return the number of deallocations done via the arena.
|
long |
numHugeAllocations()
Return the number of huge allocations done via the arena.
|
long |
numHugeDeallocations()
Return the number of huge deallocations done via the arena.
|
long |
numNormalAllocations()
Return the number of normal allocations done via the arena.
|
long |
numNormalDeallocations()
Return the number of normal deallocations done via the arena.
|
long |
numSmallAllocations()
Return the number of small allocations done via the arena.
|
long |
numSmallDeallocations()
Return the number of small deallocations done via the arena.
|
int |
numSmallSubpages()
Returns the number of small sub-pages for the arena.
|
int |
numThreadCaches()
Returns the number of thread caches backed by this arena.
|
long |
numTinyAllocations()
Deprecated.
Tiny allocations have been merged into small allocations.
|
long |
numTinyDeallocations()
Deprecated.
Tiny deallocations have been merged into small deallocations.
|
int |
numTinySubpages()
Deprecated.
Tiny sub-pages have been merged into small sub-pages.
|
List<PoolSubpageMetric> |
smallSubpages()
Returns an unmodifiable
List which holds PoolSubpageMetric s for small sub-pages. |
List<PoolSubpageMetric> |
tinySubpages()
Deprecated.
Tiny sub-pages have been merged into small sub-pages.
|
normalizeSize, pageIdx2size, pageIdx2sizeCompute, pages2pageIdx, pages2pageIdxFloor, size2SizeIdx, sizeIdx2size, sizeIdx2sizeCompute
int numThreadCaches()
@Deprecated int numTinySubpages()
int numSmallSubpages()
int numChunkLists()
@Deprecated List<PoolSubpageMetric> tinySubpages()
List
which holds PoolSubpageMetric
s for tiny sub-pages.List<PoolSubpageMetric> smallSubpages()
List
which holds PoolSubpageMetric
s for small sub-pages.List<PoolChunkListMetric> chunkLists()
List
which holds PoolChunkListMetric
s.long numAllocations()
@Deprecated long numTinyAllocations()
long numSmallAllocations()
long numNormalAllocations()
long numHugeAllocations()
long numDeallocations()
@Deprecated long numTinyDeallocations()
long numSmallDeallocations()
long numNormalDeallocations()
long numHugeDeallocations()
long numActiveAllocations()
@Deprecated long numActiveTinyAllocations()
long numActiveSmallAllocations()
long numActiveNormalAllocations()
long numActiveHugeAllocations()
long numActiveBytes()
Copyright © 2008–2024 The Netty Project. All rights reserved.