Interface Metric

All Known Implementing Classes:
MetricImpl

public interface Metric
This class represents the data structure used for collecting information about certain internal metrics for telemetry data. A metric is a counter for a certain action performed by the engine (e.g., start a root process-instance). This information is sent to Camunda when telemetry is enabled. When used for telemetry data collection, all metric counts reset on sending the data. Retrieval through ManagementService.getTelemetryData() will not reset the counter. Some metrics are used for billing purposes in enterprise setups.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    The count of this metric i.e., how often did the engine perform the action associated with this metric.
  • Method Details

    • getCount

      long getCount()
      The count of this metric i.e., how often did the engine perform the action associated with this metric.