Skip to main content
GET
/
telemetry
/
data
Fetch Telemetry Data
curl --request GET \
  --url http://{host}:{port}/{contextPath}/telemetry/data \
  --header 'Authorization: Basic <encoded-value>'
{
  "installation": "8343cc7a-8ad1-42d4-97d2-43452c0bdfa3",
  "product": {
    "name": "Camunda BPM Runtime",
    "version": "7.14.0",
    "edition": "enterprise",
    "internals": {
      "database": {
        "vendor": "h2",
        "version": "1.4.190 (2015-10-11)"
      },
      "application-server": {
        "vendor": "Wildfly",
        "version": "WildFly Full 19.0.0.Final (WildFly Core 11.0.0.Final) - 2.0.30.Final"
      },
      "jdk": {
        "version": "14.0.2",
        "vendor": "Oracle Corporation"
      },
      "commands": {
        "StartProcessInstanceCmd": {
          "count": 40
        },
        "FetchExternalTasksCmd": {
          "count": 100
        }
      },
      "metrics": {
        "process-instances": {
          "count": 936
        },
        "flow-node-instances": {
          "count": 6125
        },
        "decision-instances": {
          "count": 140
        },
        "executed-decision-elements": {
          "count": 732
        }
      },
      "data-collection-start-date": "2022-11-320T15:53:20.386+0100",
      "camunda-integration": [
        "spring-boot-starter",
        "camunda-bpm-run"
      ],
      "license-key": {
        "customer": "customer name",
        "type": "UNIFIED",
        "valid-until": "2022-09-30",
        "unlimited": false,
        "features": {
          "camundaBPM": "true"
        },
        "raw": "customer=customer name;expiryDate=2022-09-30;camundaBPM=true;optimize=false;cawemo=false"
      },
      "webapps": [
        "cockpit",
        "admin"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

Request successful.

installation
string | null

An id 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 ASEE Flow Platform.

product
object