@InterfaceAudience.Private public class MetricsConnection extends Object implements StatisticTrackable
MetricRegistry
and JmxReporter
so as to not
conflict with other uses of Yammer Metrics within the client application. Instantiating
this class implicitly creates and "starts" instances of these classes; be sure to call
shutdown()
to terminate the thread pools they allocate.Modifier and Type | Class and Description |
---|---|
static class |
MetricsConnection.CallStats
A container class for collecting details about the RPC call as it percolates.
|
protected static class |
MetricsConnection.CallTracker |
protected static class |
MetricsConnection.RegionStats |
protected static class |
MetricsConnection.RunnerStats |
Modifier and Type | Method and Description |
---|---|
void |
incrCacheDroppingExceptions(Object exception) |
void |
incrDelayRunners()
Increment the number of delay runner counts.
|
void |
incrHedgedReadOps()
Increment the number of hedged read that have occurred.
|
void |
incrHedgedReadWin()
Increment the number of hedged read returned faster than the original read.
|
void |
incrMetaCacheHit()
Increment the number of meta cache hits.
|
void |
incrMetaCacheMiss()
Increment the number of meta cache misses.
|
void |
incrMetaCacheNumClearRegion()
Increment the number of meta cache drops requested for individual region.
|
void |
incrMetaCacheNumClearServer()
Increment the number of meta cache drops requested for entire RegionServer.
|
void |
incrNormalRunners()
Increment the number of normal runner counts.
|
static MetricsConnection.CallStats |
newCallStats()
Produce an instance of
MetricsConnection.CallStats for clients to attach to RPCs. |
void |
shutdown() |
void |
updateDelayInterval(long interval)
Update delay interval of delay runner.
|
void |
updateRegionStats(ServerName serverName,
byte[] regionName,
RegionLoadStats stats)
Update stats per region.
|
void |
updateRpc(org.apache.hbase.thirdparty.com.google.protobuf.Descriptors.MethodDescriptor method,
org.apache.hbase.thirdparty.com.google.protobuf.Message param,
MetricsConnection.CallStats stats)
Report RPC context to metrics system.
|
void |
updateServerStats(ServerName serverName,
byte[] regionName,
Object r) |
public static final String CLIENT_SIDE_METRICS_ENABLED_KEY
true
to enable metrics collection of client requests.protected ConcurrentHashMap<ServerName,ConcurrentMap<byte[],MetricsConnection.RegionStats>> serverStats
protected final com.codahale.metrics.Counter metaCacheHits
protected final com.codahale.metrics.Counter metaCacheMisses
protected final MetricsConnection.CallTracker getTracker
protected final MetricsConnection.CallTracker scanTracker
protected final MetricsConnection.CallTracker appendTracker
protected final MetricsConnection.CallTracker deleteTracker
protected final MetricsConnection.CallTracker incrementTracker
protected final MetricsConnection.CallTracker putTracker
protected final MetricsConnection.CallTracker multiTracker
protected final MetricsConnection.RunnerStats runnerStats
protected final com.codahale.metrics.Counter metaCacheNumClearServer
protected final com.codahale.metrics.Counter metaCacheNumClearRegion
protected final com.codahale.metrics.Counter hedgedReadOps
protected final com.codahale.metrics.Counter hedgedReadWin
protected final com.codahale.metrics.Histogram concurrentCallsPerServerHist
protected final ConcurrentMap<String,com.codahale.metrics.Timer> rpcTimers
protected final ConcurrentMap<String,com.codahale.metrics.Histogram> rpcHistograms
public void updateServerStats(ServerName serverName, byte[] regionName, Object r)
public void updateRegionStats(ServerName serverName, byte[] regionName, RegionLoadStats stats)
StatisticTrackable
updateRegionStats
in interface StatisticTrackable
public void shutdown()
public static MetricsConnection.CallStats newCallStats()
MetricsConnection.CallStats
for clients to attach to RPCs.public void incrMetaCacheHit()
public void incrMetaCacheMiss()
public void incrMetaCacheNumClearServer()
public void incrMetaCacheNumClearRegion()
public void incrHedgedReadOps()
public void incrHedgedReadWin()
public void incrNormalRunners()
public void incrDelayRunners()
public void updateDelayInterval(long interval)
public void updateRpc(org.apache.hbase.thirdparty.com.google.protobuf.Descriptors.MethodDescriptor method, org.apache.hbase.thirdparty.com.google.protobuf.Message param, MetricsConnection.CallStats stats)
public void incrCacheDroppingExceptions(Object exception)
Copyright © 2007–2019 Cloudera. All rights reserved.