Interface MetricIntervalValue
- All Known Implementing Classes:
- MetricIntervalEntity
public interface MetricIntervalValue
Represents a metric which contains a name, reporter like the node,
 timestamp and corresponding value.
- Since:
- 7.6.0
- Author:
- Christopher Zell <christopher.zell@camunda.com>
- 
Method Summary
- 
Method Details- 
getNameString getName()Returns the name of the metric.- Returns:
- the name of the metric
- See Also:
- 
- in Metrics for a list of names which can be returned here
 
 
- 
getReporterString getReporter()Returns the reporter name of the metric, identifies the node which generates this metric. 'null' when the metrics are aggregated by reporter.- Returns:
- the reporter name
 
- 
getTimestampDate getTimestamp()Returns the timestamp as date object, on which the metric was created.- Returns:
- the timestamp
 
- 
getValuelong getValue()Returns the value of the metric.- Returns:
- the value
 
 
-