Package org.camunda.bpm.engine.telemetry
Interface Internals
-
- All Known Implementing Classes:
InternalsImpl
public interface Internals
This class represents the structure of data describing Camunda internal metrics and the technical environment in which Camunda is set-up. This information is sent to Camunda when telemetry is enabled.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationServer
getApplicationServer()
Information about the application server Camunda is running on.java.util.Set<java.lang.String>
getCamundaIntegration()
Used Camunda integrations (e.g, Spring boot starter, Camunda Platform Run, WildFly/JBoss subsystem or Camunda EJB service).java.util.Map<java.lang.String,Command>
getCommands()
Information about the number of command executions performed by the Camunda engine.Database
getDatabase()
Information about the connected database system.Jdk
getJdk()
Information about the installed Java runtime environment.LicenseKeyData
getLicenseKey()
Information about the Camunda license key issued for enterprise editions of Camunda Platform.java.util.Map<java.lang.String,Metric>
getMetrics()
A selection of metrics collected by the engine.java.util.Set<java.lang.String>
getWebapps()
Webapps enabled in the Camunda installation (e.g., cockpit, admin, tasklist).
-
-
-
Method Detail
-
getDatabase
Database getDatabase()
Information about the connected database system.
-
getApplicationServer
ApplicationServer getApplicationServer()
Information about the application server Camunda is running on.
-
getLicenseKey
LicenseKeyData getLicenseKey()
Information about the Camunda license key issued for enterprise editions of Camunda Platform. May be null when no license is used.
-
getCommands
java.util.Map<java.lang.String,Command> getCommands()
Information about the number of command executions performed by the Camunda engine. If telemetry sending is enabled, the number of executions per command resets on sending the data to Camunda. Retrieving the data throughManagementService.getTelemetryData()
will not reset the count.
-
getMetrics
java.util.Map<java.lang.String,Metric> getMetrics()
A selection of metrics collected by the engine. Metrics included are:- The number of root process instance executions started.
- The number of activity instances started or also known as flow node instances.
- The number of executed decision instances.
- The number of executed decision elements.
ManagementService.getTelemetryData()
will not reset the count.
-
getCamundaIntegration
java.util.Set<java.lang.String> getCamundaIntegration()
Used Camunda integrations (e.g, Spring boot starter, Camunda Platform Run, WildFly/JBoss subsystem or Camunda EJB service).
-
getWebapps
java.util.Set<java.lang.String> getWebapps()
Webapps enabled in the Camunda installation (e.g., cockpit, admin, tasklist).
-
getJdk
Jdk getJdk()
Information about the installed Java runtime environment.
-
-