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
-
Method Summary
Modifier and TypeMethodDescriptionlong
getAvgRegionSize
(String table) Get the average region size for this tablelong
getAvgStoreFileAge
(String table) Returns Average age of store files for this tablelong
Returns count of requests which could have used bloom filters for this table, but they weren't configured or loaded.long
Returns count of bloom filter requests which return a negative result for this table.long
Returns count of bloom filter requests for this table.long
getCpRequestsCount
(String table) Get the number of CoprocessorService requests that have been issued against this tablelong
Get the total number of filtered read requests that have been issued against this tablelong
getMaxStoreFileAge
(String table) Returns Max age of store files for this tablelong
getMaxStoreFiles
(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 tablelong
getMemStoreSize
(String table) Get the memory store size against this tablelong
getMinStoreFileAge
(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 tablelong
getNumReferenceFiles
(String table) Returns Number of reference files for this tablelong
getNumRegions
(String table) Get the number of regions hosted on for this tablelong
getNumStoreFiles
(String table) Get the number of store files hosted for this tablelong
getNumStores
(String table) Get the number of stores hosted on for this tablelong
getReadRequestCount
(String table) Get the number of read requests that have been issued against this tablelong
getStaticBloomSize
(String table) Returns the size of the static blooms for this tablelong
getStaticIndexSize
(String table) Returns the size of the static indexes for this tablelong
getStoreFileSize
(String table) Get the store file size against this tablelong
getTableSize
(String table) Get the table region size against this tablelong
getTotalRequestsCount
(String table) Get the total number of requests that have been issued for this tablelong
getWriteRequestCount
(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 -
getCpRequestsCount
Get the number of CoprocessorService requests that have been issued against this table -
getFilteredReadRequestCount
Get the total number of filtered read 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
-