Package org.camunda.bpm.engine.telemetry
Interface Command
-
- All Known Implementing Classes:
CommandImpl
public interface Command
This class represents the data structure used for collecting information about executed commands for telemetry data. A command is an action usually triggered by a user and performed by the engine. This class counts the number of executions per command. This information is sent to Camunda when telemetry is enabled. When used for telemetry data collection, all command execution counts reset on sending the data. Retrieval throughManagementService.getTelemetryData()
will not reset the counter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCount()
The count of this command i.e., how often did the engine engine execute this command.
-