Package org.camunda.bpm.engine.telemetry
Interface TelemetryData
- 
- All Known Implementing Classes:
- TelemetryDataImpl
 
 public interface TelemetryDataThe engine collects information about multiple aspects of the installation. If telemetry is enabled this information is sent to Camunda. If telemetry is disabled, the engine still collects this information and provides it throughManagementService.getTelemetryData(). This class represents the data structure used to collect telemetry data.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetInstallation()This method returns a String which is unique for each installation of Camunda.ProductgetProduct()Returns a data object that stores information about the used Camunda product.
 
- 
- 
- 
Method Detail- 
getInstallationjava.lang.String getInstallation() This method returns a String which is unique for each installation of Camunda. It is stored once per database so all engines connected to the same database will have the same installation ID. The ID is used to identify a single installation of Camunda Platform.
 - 
getProductProduct getProduct() Returns a data object that stores information about the used Camunda product.
 
- 
 
-