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 through
ManagementService.getTelemetryData()
will
not reset the counter. Some metrics are used for billing purposes in
enterprise setups.-
Method Summary
Modifier and TypeMethodDescriptionlong
getCount()
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.
-