Get ProcessEngine Info

Query process engine configuration information, including bpmn, job, and telemetry

Method

GET /enhancement/process-engine/info

Parameters

Query Parameters

Result

A JSON object of process engine info.

Name Type Description
id String The task id.
processDefinitionKey String The key of the process definition the task belongs to.
processDefinitionId String The id of the process definition the task belongs to.

Response Codes

Code Media type Description
200 application/json Request successful.

Example

Request

GET /enhancement/process-engine/info

Response

{
    "bpm": {
        "processEngineName": "default",
        "generateUniqueProcessEngineName": false,
        "generateUniqueProcessApplicationName": false,
        "idGenerator": "strong",
        "jobExecutorAcquireByPriority": null,
        "defaultNumberOfRetries": null,
        "historyLevel": "full",
        "historyLevelDefault": "full",
        "autoDeploymentEnabled": true,
        "deploymentResourcePattern": [
            "classpath*:**/*.cmmn",
            "classpath*:**/*.cmmn11.xml",
            "classpath*:**/*.bpmn",
            "classpath*:**/*.cmmn10.xml",
            "classpath*:**/*.dmn11.xml",
            "classpath*:**/*.dmn",
            "classpath*:**/*.bpmn20.xml"
        ],
        "defaultSerializationFormat": "application/x-java-serialized-object",
        "licenseFile": null,
        "enabled": true
    },
    "telemetry": {
        "name": "Camunda BPM Runtime",
        "version": "7.18.0",
        "edition": "community",
        "database": {
            "vendor": "PostgreSQL",
            "version": "15.1 (Debian 15.1-1.pgdg110+1)"
        },
        "applicationServer": {
            "vendor": "Apache Tomcat",
            "version": "Apache Tomcat/9.0.65"
        },
        "licenseKey": null,
        "commands": null,
        "camundaIntegration": [
            "spring-boot-starter"
        ],
        "webapps": [],
        "jdk": {
            "version": "11.0.19",
            "vendor": "Azul Systems, Inc."
        },
        "telemetryEnabled": false
    },
    "job": {
        "enabled": true,
        "deploymentAware": false,
        "corePoolSize": 3,
        "maxPoolSize": 10,
        "queueCapacity": 3,
        "keepAliveSeconds": null,
        "lockTimeInMillis": 300000,
        "maxJobsPerAcquisition": 3,
        "waitTimeInMillis": 5000,
        "maxWait": 60000,
        "backoffTimeInMillis": 0,
        "maxBackoff": 0,
        "backoffDecreaseThreshold": 100,
        "waitIncreaseFactor": 2.0
    }
}

On this Page: