Counter |
MetricRegistry.counter(String name,
MetricRegistry.MetricSupplier<Counter> supplier) |
Return the Counter registered under this name; or create and register
a new Counter using the provided MetricSupplier if none is registered.
|
Counter |
NoopMetricRegistry.counter(String name,
MetricRegistry.MetricSupplier<Counter> supplier) |
Return the Counter registered under this name; or create and register
a new Counter using the provided MetricSupplier if none is registered.
|
<T extends Gauge> T |
MetricRegistry.gauge(String name,
MetricRegistry.MetricSupplier<T> supplier) |
Return the Gauge registered under this name; or create and register
a new Gauge using the provided MetricSupplier if none is registered.
|
<T extends Gauge> T |
NoopMetricRegistry.gauge(String name,
MetricRegistry.MetricSupplier<T> supplier) |
Return the Gauge registered under this name; or create and register
a new Gauge using the provided MetricSupplier if none is registered.
|
Histogram |
MetricRegistry.histogram(String name,
MetricRegistry.MetricSupplier<Histogram> supplier) |
Return the Histogram registered under this name; or create and register
a new Histogram using the provided MetricSupplier if none is registered.
|
Histogram |
NoopMetricRegistry.histogram(String name,
MetricRegistry.MetricSupplier<Histogram> supplier) |
Return the Histogram registered under this name; or create and register
a new Histogram using the provided MetricSupplier if none is registered.
|
Meter |
MetricRegistry.meter(String name,
MetricRegistry.MetricSupplier<Meter> supplier) |
Return the Meter registered under this name; or create and register
a new Meter using the provided MetricSupplier if none is registered.
|
Meter |
NoopMetricRegistry.meter(String name,
MetricRegistry.MetricSupplier<Meter> supplier) |
Return the Meter registered under this name; or create and register
a new Meter using the provided MetricSupplier if none is registered.
|
Timer |
MetricRegistry.timer(String name,
MetricRegistry.MetricSupplier<Timer> supplier) |
Return the Timer registered under this name; or create and register
a new Timer using the provided MetricSupplier if none is registered.
|
Timer |
NoopMetricRegistry.timer(String name,
MetricRegistry.MetricSupplier<Timer> supplier) |
Return the Timer registered under this name; or create and register
a new Timer using the provided MetricSupplier if none is registered.
|