org.camunda.bpm.engine.management
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

Method Summary
 String getName()
          Returns the name of the metric.
 String getReporter()
          Returns the reporter name of the metric.
 Date getTimestamp()
          Returns the timestamp as date object, on which the metric was created.
 long getValue()
          Returns the value of the metric.
 

Method Detail

getName

String getName()
Returns the name of the metric.

Returns:
the name of the metric
See Also:
in {@link Metrics} for a list of names which can be returned here

getReporter

String getReporter()
Returns the reporter name of the metric. Identifies the node which generates this metric.

Returns:
the reporter name

getTimestamp

Date getTimestamp()
Returns the timestamp as date object, on which the metric was created.

Returns:
the timestamp

getValue

long getValue()
Returns the value of the metric.

Returns:
the value


Copyright © 2017 camunda services GmbH. All rights reserved.