Class and Description |
---|
com.netflix.servo.monitor.ResettableCounter
Use Monitors.newCounter() instead to get a default implementation
|
Method and Description |
---|
com.netflix.servo.tag.BasicTagList.copyOf(String...)
Use
BasicTagList.of(String...) with separate key, values instead. |
com.netflix.servo.tag.BasicTagList.copyOf(Tag...) |
com.netflix.servo.tag.BasicTag.parseTag(String)
Use Tags.parseTag instead.
|
com.netflix.servo.monitor.BasicTimer.record(long) |
com.netflix.servo.monitor.ContextualTimer.record(long) |
com.netflix.servo.monitor.Timer.record(long)
Use record(duration, timeUnit). By always providing a timeUnit to record()
you can have a base time unit of seconds, but
use recordings with timeunit of milliseconds for example.
|
com.netflix.servo.monitor.DynamicTimer.record(MonitorConfig, long, TimeUnit)
Use
DynamicTimer.record(MonitorConfig, java.util.concurrent.TimeUnit,
long, java.util.concurrent.TimeUnit) instead.
The new method allows you to be specific about the units used for reporting the timer and
the units in which the duration is measured. |
Constructor and Description |
---|
com.netflix.servo.publish.NormalizationTransform(MetricObserver, long, long)
Please use a constructor that specifies the the timeunit explicitly.
|
com.netflix.servo.publish.NormalizationTransform(MetricObserver, long, long, Clock)
Please use a constructor that specifies the the timeunit explicitly.
|