@InterfaceAudience.Private public class BaseSourceImpl extends Object implements BaseSource, MetricsSource
| Modifier and Type | Field and Description |
|---|---|
protected String |
metricsContext |
protected String |
metricsDescription |
protected String |
metricsJmxContext |
protected String |
metricsName |
protected DynamicMetricsRegistry |
metricsRegistry |
HBASE_METRICS_SYSTEM_NAME| Constructor and Description |
|---|
BaseSourceImpl(String metricsName,
String metricsDescription,
String metricsContext,
String metricsJmxContext) |
| Modifier and Type | Method and Description |
|---|---|
void |
decGauge(String gaugeName,
long delta)
Decrease the value of a named gauge.
|
void |
getMetrics(MetricsCollector metricsCollector,
boolean all) |
String |
getMetricsContext() |
String |
getMetricsDescription() |
String |
getMetricsJmxContext() |
String |
getMetricsName() |
DynamicMetricsRegistry |
getMetricsRegistry() |
void |
incCounters(String key,
long delta)
Increment a named counter by some value.
|
void |
incGauge(String gaugeName,
long delta)
Add some amount to a gauge.
|
void |
init() |
void |
removeMetric(String key)
Remove a named gauge.
|
void |
setGauge(String gaugeName,
long value)
Set a single gauge to a value.
|
void |
updateHistogram(String name,
long value) |
void |
updateQuantile(String name,
long value) |
protected final DynamicMetricsRegistry metricsRegistry
protected final String metricsName
protected final String metricsDescription
protected final String metricsContext
protected final String metricsJmxContext
public void init()
init in interface BaseSourcepublic void setGauge(String gaugeName, long value)
setGauge in interface BaseSourcegaugeName - gauge namevalue - the new value of the gauge.public void incGauge(String gaugeName, long delta)
incGauge in interface BaseSourcegaugeName - The name of the gauge to increment.delta - The amount to increment the gauge by.public void decGauge(String gaugeName, long delta)
decGauge in interface BaseSourcegaugeName - The name of the gauge.delta - the ammount to subtract from a gauge value.public void incCounters(String key, long delta)
incCounters in interface BaseSourcekey - the name of the counterdelta - the ammount to incrementpublic void updateHistogram(String name, long value)
updateHistogram in interface BaseSourcepublic void updateQuantile(String name, long value)
updateQuantile in interface BaseSourcepublic void removeMetric(String key)
removeMetric in interface BaseSourcekey - public void getMetrics(MetricsCollector metricsCollector, boolean all)
getMetrics in interface MetricsSourcepublic DynamicMetricsRegistry getMetricsRegistry()
public String getMetricsContext()
getMetricsContext in interface BaseSourcepublic String getMetricsDescription()
getMetricsDescription in interface BaseSourcepublic String getMetricsJmxContext()
getMetricsJmxContext in interface BaseSourcepublic String getMetricsName()
getMetricsName in interface BaseSourceCopyright © 2007–2017 The Apache Software Foundation. All rights reserved.