Package org.camunda.bpm.engine.telemetry
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 throughManagementService.getTelemetryData()
will not reset the counter. Some metrics are used for billing purposes in enterprise setups.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCount()
The count of this metric i.e., how often did the engine perform the action associated with this metric.
-