DropwizardMetricServices
@Deprecated public class DropwizardMetricWriter extends Object implements MetricWriter
MetricWriter
that send data to a Dropwizard MetricRegistry
based on a
naming convention.
increment(Delta)
with names in "meter.*" are treated as
Meter
eventsCounter
valuesset(Metric)
with names in "histogram.*" are treated as
Histogram
updatesset(Metric)
with names in "timer.*" are treated as Timer
updatesGauge
values (single valued
measurements of type double)Constructor and Description |
---|
DropwizardMetricWriter(com.codahale.metrics.MetricRegistry registry)
Deprecated.
Create a new
DropwizardMetricWriter instance. |
Modifier and Type | Method and Description |
---|---|
void |
increment(Delta<?> delta)
Deprecated.
Increment the value of a metric (or decrement if the delta is negative).
|
void |
reset(String metricName)
Deprecated.
Reset the value of a metric, usually to zero value.
|
void |
set(Metric<?> value)
Deprecated.
Set the value of a metric.
|
public DropwizardMetricWriter(com.codahale.metrics.MetricRegistry registry)
DropwizardMetricWriter
instance.registry
- the underlying metric registrypublic void increment(Delta<?> delta)
CounterWriter
increment
in interface CounterWriter
delta
- the amount to increment bypublic void set(Metric<?> value)
GaugeWriter
set
in interface GaugeWriter
value
- the valuepublic void reset(String metricName)
CounterWriter
reset
in interface CounterWriter
metricName
- the name to resetCopyright © 2016 Pivotal Software, Inc.. All rights reserved.