Interface MetricsTableWrapperAggregate
- All Known Implementing Classes:
MetricsTableWrapperAggregateImpl
Interface of class that will wrap a MetricsTableSource and export numbers so they can be used in
MetricsTableSource
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionlonggetAvgRegionSize(String table) Get the average region size for this tablelonggetAvgStoreFileAge(String table) Returns Average age of store files for this tablelongReturns count of requests which could have used bloom filters for this table, but they weren't configured or loaded.longReturns count of bloom filter requests which return a negative result for this table.longReturns count of bloom filter requests for this table.longGet the number of write requests that have been issued against this tablelonggetMaxStoreFileAge(String table) Returns Max age of store files for this tablelonggetMaxStoreFiles(String table) Get the max number of store files across all regions of this tableReturns number of row reads completely from memstore per store for this tablelonggetMemStoreSize(String table) Get the memory store size against this tablelonggetMinStoreFileAge(String table) Returns Min age of store files for this tablegetMixedRowReadsCount(String table) Returns number of row reads from file and memstore per store for this tablelonggetNumReferenceFiles(String table) Returns Number of reference files for this tablelonggetNumRegions(String table) Get the number of regions hosted on for this tablelonggetNumStoreFiles(String table) Get the number of store files hosted for this tablelonggetNumStores(String table) Get the number of stores hosted on for this tablelonggetReadRequestCount(String table) Get the number of read requests that have been issued against this tablelonggetStaticBloomSize(String table) Returns the size of the static blooms for this tablelonggetStaticIndexSize(String table) Returns the size of the static indexes for this tablelonggetStoreFileSize(String table) Get the store file size against this tablelonggetTableSize(String table) Get the table region size against this tablelonggetTotalRequestsCount(String table) Get the total number of requests that have been issued for this tablelonggetWriteRequestCount(String table) Get the number of write requests that have been issued for this table
-
Field Details
-
HASH
- See Also:
-
-
Method Details
-
getReadRequestCount
Get the number of read requests that have been issued against this table -
getFilteredReadRequestCount
Get the number of write requests that have been issued against this table -
getWriteRequestCount
Get the number of write requests that have been issued for this table -
getTotalRequestsCount
Get the total number of requests that have been issued for this table -
getMemStoreSize
Get the memory store size against this table -
getStoreFileSize
Get the store file size against this table -
getTableSize
Get the table region size against this table -
getAvgRegionSize
Get the average region size for this table -
getNumRegions
Get the number of regions hosted on for this table -
getNumStores
Get the number of stores hosted on for this table -
getNumStoreFiles
Get the number of store files hosted for this table -
getMaxStoreFiles
Get the max number of store files across all regions of this table -
getMaxStoreFileAge
Returns Max age of store files for this table -
getMinStoreFileAge
Returns Min age of store files for this table -
getAvgStoreFileAge
Returns Average age of store files for this table -
getStaticIndexSize
Returns the size of the static indexes for this table -
getStaticBloomSize
Returns the size of the static blooms for this table -
getBloomFilterRequestsCount
Returns count of bloom filter requests for this table. -
getBloomFilterNegativeResultsCount
Returns count of bloom filter requests which return a negative result for this table. -
getBloomFilterEligibleRequestsCount
Returns count of requests which could have used bloom filters for this table, but they weren't configured or loaded. -
getNumReferenceFiles
Returns Number of reference files for this table -
getMemstoreOnlyRowReadsCount
Returns number of row reads completely from memstore per store for this table -
getMixedRowReadsCount
Returns number of row reads from file and memstore per store for this table
-