接口 ManagedLedgerFactoryMXBean
- 所有已知实现类:
ManagedLedgerFactoryMBeanImpl
@LimitedPrivate
@Stable
public interface ManagedLedgerFactoryMXBean
JMX Bean interface for ManagedLedgerFactory stats.
-
方法概要
修饰符和类型方法说明longCurrent number of entries in the cache.longCumulative number of entries evicted from the cache.doubleGet the number of cache hits per second.doubleGet the amount of data is retrieved from the cache in byte/s.longCumulative number of entries inserted into the cache.longGet the configured maximum cache size.doubleGet the number of cache misses per second.doubleGet the amount of data is retrieved from the bookkeeper in byte/s.longGet the size in byte used to store the entries payloads.longGet the number of cache evictions during the last minute.intGet the number of currently opened managed ledgers on the factory.
-
方法详细资料
-
getNumberOfManagedLedgers
int getNumberOfManagedLedgers()Get the number of currently opened managed ledgers on the factory. -
getCacheUsedSize
long getCacheUsedSize()Get the size in byte used to store the entries payloads. -
getCacheMaxSize
long getCacheMaxSize()Get the configured maximum cache size. -
getCacheHitsRate
double getCacheHitsRate()Get the number of cache hits per second. -
getCacheMissesRate
double getCacheMissesRate()Get the number of cache misses per second. -
getCacheHitsThroughput
double getCacheHitsThroughput()Get the amount of data is retrieved from the cache in byte/s. -
getCacheMissesThroughput
double getCacheMissesThroughput()Get the amount of data is retrieved from the bookkeeper in byte/s. -
getNumberOfCacheEvictions
long getNumberOfCacheEvictions()Get the number of cache evictions during the last minute. -
getCacheInsertedEntriesCount
long getCacheInsertedEntriesCount()Cumulative number of entries inserted into the cache. -
getCacheEvictedEntriesCount
long getCacheEvictedEntriesCount()Cumulative number of entries evicted from the cache. -
getCacheEntriesCount
long getCacheEntriesCount()Current number of entries in the cache.
-