Uses of Class
com.yammer.metrics.core.TimerMetric

Packages that use TimerMetric
com.yammer.metrics   
com.yammer.metrics.core   
com.yammer.metrics.reporting   
 

Uses of TimerMetric in com.yammer.metrics
 

Methods in com.yammer.metrics that return TimerMetric
static TimerMetric Metrics.newTimer(Class<?> klass, String name)
          Creates a new TimerMetric and registers it under the given class and name, measuring elapsed time in milliseconds and invocations per second.
static TimerMetric Metrics.newTimer(Class<?> klass, String name, String scope)
          Creates a new TimerMetric and registers it under the given class, name, and scope, measuring elapsed time in milliseconds and invocations per second.
static TimerMetric Metrics.newTimer(Class<?> klass, String name, String scope, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new TimerMetric and registers it under the given class, name, and scope.
static TimerMetric Metrics.newTimer(Class<?> klass, String name, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new TimerMetric and registers it under the given class and name.
static TimerMetric Metrics.newTimer(MetricName metricName, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new TimerMetric and registers it under the given metric name.
 

Uses of TimerMetric in com.yammer.metrics.core
 

Methods in com.yammer.metrics.core that return TimerMetric
 TimerMetric MetricsRegistry.newTimer(Class<?> klass, String name)
          Creates a new TimerMetric and registers it under the given class and name, measuring elapsed time in milliseconds and invocations per second.
 TimerMetric MetricsRegistry.newTimer(Class<?> klass, String name, String scope)
          Creates a new TimerMetric and registers it under the given class, name, and scope, measuring elapsed time in milliseconds and invocations per second.
 TimerMetric MetricsRegistry.newTimer(Class<?> klass, String name, String scope, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new TimerMetric and registers it under the given class, name, and scope.
 TimerMetric MetricsRegistry.newTimer(Class<?> klass, String name, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new TimerMetric and registers it under the given class and name.
 TimerMetric MetricsRegistry.newTimer(MetricName metricName, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new TimerMetric and registers it under the given metric name.
 

Methods in com.yammer.metrics.core with parameters of type TimerMetric
 void MetricsProcessor.processTimer(MetricName name, TimerMetric timer, T context)
           
 

Uses of TimerMetric in com.yammer.metrics.reporting
 

Methods in com.yammer.metrics.reporting with parameters of type TimerMetric
 void CsvReporter.processTimer(MetricName name, TimerMetric timer, CsvReporter.Context context)
           
 void JmxReporter.processTimer(MetricName name, TimerMetric timer, JmxReporter.Context context)
           
 void ConsoleReporter.processTimer(MetricName name, TimerMetric timer, PrintStream stream)
           
 

Constructors in com.yammer.metrics.reporting with parameters of type TimerMetric
JmxReporter.Timer(TimerMetric metric, ObjectName objectName)
           
 



Copyright © 2011. All Rights Reserved.