| Package | Description |
|---|---|
| com.yammer.metrics | |
| com.yammer.metrics.core | |
| com.yammer.metrics.reporting |
| Modifier and Type | Method and Description |
|---|---|
static Histogram |
Metrics.newHistogram(Class<?> klass,
String name)
Creates a new non-biased
Histogram and registers it under the
given class and name. |
static Histogram |
Metrics.newHistogram(Class<?> klass,
String name,
boolean biased)
Creates a new
Histogram and registers it under the given
class and name. |
static Histogram |
Metrics.newHistogram(Class<?> klass,
String name,
String scope)
Creates a new non-biased
Histogram and registers it under the
given class, name, and scope. |
static Histogram |
Metrics.newHistogram(Class<?> klass,
String name,
String scope,
boolean biased)
Creates a new
Histogram and registers it under the given
class, name, and scope. |
static Histogram |
Metrics.newHistogram(MetricName metricName)
Creates a new non-biased
Histogram and registers it under the
given metric name. |
static Histogram |
Metrics.newHistogram(MetricName metricName,
boolean biased)
Creates a new
Histogram and registers it under the given
metric name. |
| Modifier and Type | Method and Description |
|---|---|
Histogram |
MetricsRegistry.newHistogram(Class<?> klass,
String name)
Creates a new non-biased
Histogram and registers it under the given class and name. |
Histogram |
MetricsRegistry.newHistogram(Class<?> klass,
String name,
boolean biased)
Creates a new
Histogram and registers it under the given class and name. |
Histogram |
MetricsRegistry.newHistogram(Class<?> klass,
String name,
String scope)
Creates a new non-biased
Histogram and registers it under the given class, name, and
scope. |
Histogram |
MetricsRegistry.newHistogram(Class<?> klass,
String name,
String scope,
boolean biased)
Creates a new
Histogram and registers it under the given class, name, and scope. |
Histogram |
MetricsRegistry.newHistogram(MetricName metricName,
boolean biased)
Creates a new
Histogram and registers it under the given metric name. |
| Modifier and Type | Method and Description |
|---|---|
void |
MetricProcessor.processHistogram(MetricName name,
Histogram histogram,
T context)
Process the given histogram.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CsvReporter.processHistogram(MetricName name,
Histogram histogram,
CsvReporter.Context context) |
void |
JmxReporter.processHistogram(MetricName name,
Histogram histogram,
com.yammer.metrics.reporting.JmxReporter.Context context) |
void |
ConsoleReporter.processHistogram(MetricName name,
Histogram histogram,
PrintStream stream) |
Copyright © 2012. All Rights Reserved.