Toggle navigation
Home
com.yammer.metrics.core.MetricsRegistry to com.codahale.metrics.MetricRegistry
No. of Instances - 9
No. of Commits - 1
No. of Projects - {'hbase'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: External -> External
Mapping:
Cascading Type Change (Similar)
MetricsRegistry
to
MetricRegistry
Add or Remove Method invocation
registry.newCounter(this.getClass(),"metaCacheHits",scope)
to
registry.counter(name(this.getClass(),"metaCacheHits",scope))
registry.newCounter(this.getClass(),"metaCacheMisses",scope)
to
registry.counter(name(this.getClass(),"metaCacheMisses",scope))
registry.newTimer(MetricsConnection.class,DRTN_BASE + this.name,scope)
to
registry.timer(name(MetricsConnection.class,DRTN_BASE + this.name,scope))
registry.newHistogram(MetricsConnection.class,REQ_BASE + this.name,scope)
to
registry.histogram(name(MetricsConnection.class,REQ_BASE + this.name,scope))
registry.newHistogram(MetricsConnection.class,RESP_BASE + this.name,scope)
to
registry.histogram(name(MetricsConnection.class,RESP_BASE + this.name,scope))
registry.newHistogram(MetricsConnection.class,MEMLOAD_BASE + this.name)
to
registry.histogram(name(MetricsConnection.class,MEMLOAD_BASE + this.name))
registry.newHistogram(MetricsConnection.class,HEAP_BASE + this.name)
to
registry.histogram(name(MetricsConnection.class,HEAP_BASE + this.name))
registry.newCounter(MetricsConnection.class,"normalRunnersCount")
to
registry.counter(name(MetricsConnection.class,"normalRunnersCount"))
registry.newCounter(MetricsConnection.class,"delayRunnersCount")
to
registry.counter(name(MetricsConnection.class,"delayRunnersCount"))
registry.newHistogram(MetricsConnection.class,"delayIntervalHist")
to
registry.histogram(name(MetricsConnection.class,"delayIntervalHist"))
METRICS.newHistogram(CacheStats.class,name + ".ageAtEviction")
to
METRICS.histogram(name(CacheStats.class,name + ".ageAtEviction"))