Uses of Interface
org.apache.hadoop.hbase.metrics.Metric
-
Uses of org.apache.hadoop.hbase.metrics.Metric in org.apache.hadoop.hbase.metrics
Modifier and TypeInterfaceDescriptioninterface
org.apache.hadoop.hbase.metrics.Counter
A mutable number optimized for high concurrency counting.interface
org.apache.hadoop.hbase.metrics.Gauge<T>
A metrics which measures a discrete value.interface
org.apache.hadoop.hbase.metrics.Histogram
A metric which measures the distribution of values.interface
org.apache.hadoop.hbase.metrics.Meter
A metric which measure the rate at which some operation is invoked.interface
org.apache.hadoop.hbase.metrics.MetricRegistry
General purpose factory for creating various metrics.interface
org.apache.hadoop.hbase.metrics.MetricSet
A set of named metrics.interface
org.apache.hadoop.hbase.metrics.Timer
A metric which encompasses aHistogram
andMeter
.Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.metrics.Metric
MetricRegistry.register
(String name, org.apache.hadoop.hbase.metrics.Metric metric) Registers theMetric
with the given name if there does not exist one with the same name.Modifier and TypeMethodDescriptionOptional<org.apache.hadoop.hbase.metrics.Metric>
MetricRegistry.get
(String name) Returns previously registered metric with the name if any.MetricSet.getMetrics()
A map of metric names to metrics.Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.metrics.Metric
MetricRegistry.register
(String name, org.apache.hadoop.hbase.metrics.Metric metric) Registers theMetric
with the given name if there does not exist one with the same name.boolean
MetricRegistry.remove
(String name, org.apache.hadoop.hbase.metrics.Metric metric) Removes the metric with the given name only if it is registered to the provided metric.