Interface MetricsRegionSource
- All Superinterfaces:
Comparable<MetricsRegionSource>
- All Known Implementing Classes:
MetricsRegionSourceImpl
This interface will be implemented to allow single regions to push metrics into
MetricsRegionAggregateSource that will in turn push data to the Hadoop metrics system.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close the region's metrics as this region is closing.Get the aggregate source to which this reports.void
Update related counts of appends.void
Update related counts of deletes.void
Update related counts of getsvoid
Update related counts of increments.void
Update related counts of puts.void
Update related counts of resultScanner.next().Methods inherited from interface java.lang.Comparable
compareTo
-
Field Details
-
OPS_SAMPLE_NAME
- See Also:
-
SIZE_VALUE_NAME
- See Also:
-
COMPACTIONS_COMPLETED_COUNT
- See Also:
-
COMPACTIONS_FAILED_COUNT
- See Also:
-
LAST_MAJOR_COMPACTION_AGE
- See Also:
-
COMPACTIONS_QUEUED_COUNT
- See Also:
-
MAX_COMPACTION_QUEUE_SIZE
- See Also:
-
NUM_BYTES_COMPACTED_COUNT
- See Also:
-
NUM_FILES_COMPACTED_COUNT
- See Also:
-
FLUSHES_QUEUED_COUNT
- See Also:
-
MAX_FLUSH_QUEUE_SIZE
- See Also:
-
COMPACTIONS_COMPLETED_DESC
- See Also:
-
COMPACTIONS_FAILED_DESC
- See Also:
-
LAST_MAJOR_COMPACTION_DESC
- See Also:
-
COMPACTIONS_QUEUED_DESC
- See Also:
-
MAX_COMPACTION_QUEUE_DESC
- See Also:
-
FLUSHES_QUEUED_DESC
- See Also:
-
MAX_FLUSH_QUEUE_DESC
- See Also:
-
NUM_BYTES_COMPACTED_DESC
- See Also:
-
NUM_FILES_COMPACTED_DESC
- See Also:
-
COPROCESSOR_EXECUTION_STATISTICS
- See Also:
-
COPROCESSOR_EXECUTION_STATISTICS_DESC
- See Also:
-
REPLICA_ID
- See Also:
-
REPLICA_ID_DESC
- See Also:
-
ROW_READS_ONLY_ON_MEMSTORE
- See Also:
-
ROW_READS_ONLY_ON_MEMSTORE_DESC
- See Also:
-
MIXED_ROW_READS
- See Also:
-
MIXED_ROW_READS_ON_STORE_DESC
- See Also:
-
-
Method Details
-
close
void close()Close the region's metrics as this region is closing. -
updatePut
void updatePut()Update related counts of puts. -
updateDelete
void updateDelete()Update related counts of deletes. -
updateGet
void updateGet()Update related counts of gets -
updateScan
void updateScan()Update related counts of resultScanner.next(). -
updateIncrement
void updateIncrement()Update related counts of increments. -
updateAppend
void updateAppend()Update related counts of appends. -
getAggregateSource
Get the aggregate source to which this reports.
-