public class TimeStampedCounter extends com.codahale.metrics.Counter implements TimeStampedMetric
Counter
class that provides an association
of the Counter
value with time stamps.Constructor and Description |
---|
TimeStampedCounter(MetricRegistry registry,
CounterDescriptor descriptor)
Constructs a
TimeStampedCounter with the specified
characteristics using the specified MetricRegistry . |
TimeStampedCounter(MetricRegistry registry,
CounterDescriptor descriptor,
String uid)
Constructs a
TimeStampedCounter with the specified UID and other
characteristics using the specified MetricRegistry . |
Modifier and Type | Method and Description |
---|---|
void |
dec(long toSubtract) |
CounterDataPoint |
extractDataPoint()
Extract a
CounterDataPoint from this object. |
CounterDescriptor |
getDescriptor()
Gets the
MetricDescriptor that describes this TimeStampedMetric object. |
long |
getMsSpanned()
Determines the number of milliseconds spanned between the latest (update)
time stamp and the oldest (previous) time stamp, accounting for roll-over
of the time stamp.
|
long |
getPreviousTimeStamp()
Gets the previous time stamp.
|
protected TimeStampManager |
getTimeStampManager()
Gets the
TimeStampManager that this object uses to manage its
associated time stamps. |
String |
getUid()
Gets the UID.
|
long |
getUpdateTimeStamp()
Gets the update time stamp.
|
void |
inc(long toAdd) |
boolean |
isValid()
Indicates whether this
TimeStampedMetric 's current value is a
valid one. |
void |
reset()
Prepares the counter for use in a new time period by resetting its value
to zero and saving the most recent update time stamp as the previous time
stamp.
|
void |
setDescriptor(CounterDescriptor toSet)
Sets the
CounterDescriptor that specifies characteristics of this
TimeStampedCounter . |
void |
setPreviousTimeStamp(long time)
Sets the previous time stamp.
|
void |
setUid(String toSet)
Sets the UID of this object.
|
void |
setUpdateTimeStamp(long time)
Sets the update time stamp.
|
String |
toDebugString()
Gets a detailed representation of this object to facilitate debugging.
|
String |
toString() |
void |
updateTimeStamp()
Convenience method that sets the update time stamp to the current time.
|
public TimeStampedCounter(MetricRegistry registry, CounterDescriptor descriptor)
TimeStampedCounter
with the specified
characteristics using the specified MetricRegistry
.registry
- MetricRegistry
to use for allocating this objectdescriptor
- CounterDescriptor
that specifies various
characteristics of the resulting TimeStampedCounter
public TimeStampedCounter(MetricRegistry registry, CounterDescriptor descriptor, String uid)
TimeStampedCounter
with the specified UID and other
characteristics using the specified MetricRegistry
.registry
- MetricRegistry
to use for allocating this objectdescriptor
- CounterDescriptor
that specifies various
characteristics of the resulting TimeStampedCounter
uid
- UID to assign to the resulting TimeStampedCounter
IllegalArgumentException
- if a null value is supplied for either
the CounterDescriptor
or MetricRegistry
argumentpublic void dec(long toSubtract)
dec
in class com.codahale.metrics.Counter
public CounterDataPoint extractDataPoint()
CounterDataPoint
from this object.extractDataPoint
in interface TimeStampedMetric
CounterDataPoint
public CounterDescriptor getDescriptor()
TimeStampedMetric
MetricDescriptor
that describes this TimeStampedMetric
object.getDescriptor
in interface TimeStampedMetric
MetricDescriptor
that describes this TimeStampedMetric
public long getMsSpanned()
TimeStampedMetric
getMsSpanned
in interface TimeStampedMetric
public long getPreviousTimeStamp()
TimeStampedMetric
getPreviousTimeStamp
in interface TimeStampedMetric
protected TimeStampManager getTimeStampManager()
TimeStampManager
that this object uses to manage its
associated time stamps.TimeStampManager
for this objectpublic String getUid()
TimeStampedMetric
getUid
in interface TimeStampedMetric
public long getUpdateTimeStamp()
TimeStampedMetric
getUpdateTimeStamp
in interface TimeStampedMetric
public void inc(long toAdd)
inc
in class com.codahale.metrics.Counter
public boolean isValid()
TimeStampedMetric
TimeStampedMetric
's current value is a
valid one. For example, it could be a non-numeric value like Double.NaN,
depending upon type and state of the TimeStampedMetric
.isValid
in interface TimeStampedMetric
true
if valid, false
otherwisepublic void reset()
reset
in interface TimeStampedMetric
public void setDescriptor(CounterDescriptor toSet)
CounterDescriptor
that specifies characteristics of this
TimeStampedCounter
.toSet
- the CounterDescriptor
for this objectpublic void setPreviousTimeStamp(long time)
TimeStampedMetric
setPreviousTimeStamp
in interface TimeStampedMetric
time
- previous time stamppublic void setUid(String toSet)
TimeStampedMetric
setUid
in interface TimeStampedMetric
toSet
- new UID for this objectpublic void setUpdateTimeStamp(long time)
TimeStampedMetric
setUpdateTimeStamp
in interface TimeStampedMetric
time
- update time stamppublic String toDebugString()
public void updateTimeStamp()
TimeStampedMetric
updateTimeStamp
in interface TimeStampedMetric
Copyright © 2015. All Rights Reserved.