Package org.camunda.bpm.engine.telemetry
Interface TelemetryData
-
- All Known Implementing Classes:
TelemetryDataImpl
public interface TelemetryData
The 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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getInstallation()
This method returns a String which is unique for each installation of Camunda.Product
getProduct()
Returns a data object that stores information about the used Camunda product.
-
-
-
Method Detail
-
getInstallation
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.
-
getProduct
Product getProduct()
Returns a data object that stores information about the used Camunda product.
-
-