Package org.apache.storm.metric.api
Class CountMetric
java.lang.Object
org.apache.storm.metric.api.CountMetric
- All Implemented Interfaces:
IMetric
- Direct Known Subclasses:
CountShellMetric
-
Constructor Details
-
CountMetric
public CountMetric()
-
-
Method Details
-
incr
public void incr() -
incrBy
public void incrBy(long incrementBy) -
getValueAndReset
Description copied from interface:IMetric
Get value and reset.- Specified by:
getValueAndReset
in interfaceIMetric
- Returns:
- an object that will be sent to
IMetricsConsumer.handleDataPoints(org.apache.storm.metric.api.IMetricsConsumer.TaskInfo, java.util.Collection)
. Ifnull
is returned nothing will be sent. If this value can be reset, like with a counter, a side effect of calling this should be that the value is reset.
-