Get usage metrics for clusters
GET/admin-api/usage-metrics
Returns usage metrics for a specific cluster for a given time range. The usage metrics are aggregated over the time range and include number of started process instances, executed decision instances, and assigned task users.
Request
Query Parameters
The unique identifier of the cluster
The start timestamp of the time range as UNIX timestamp in milliseconds
The end timestamp of the time range as UNIX timestamp in milliseconds
Responses
- 200
- 403
- 500
Ok
- application/json
- Schema
- Example (from schema)
Schema
The identifier of the cluster.
processInstances objectrequired
The usage metrics for started process instances.
The number of usage metrics for a specific type.
decisionInstances objectrequired
The usage metrics for executed decision instances.
The number of usage metrics for a specific type.
taskUsers objectrequired
The usage metrics for assigned task users.
The number of usage metrics for a specific type.
The users that tasks have been assigned to.
{
"id": "string",
"processInstances": {
"total": 0
},
"decisionInstances": {
"total": 0
},
"taskUsers": {
"total": 0,
"assignees": [
"string"
]
}
}
Forbidden
Server-side error