Get usage metrics for clusters
GEThttp://localhost:8080/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
id stringrequired
The unique identifier of the cluster
start doublerequired
The start timestamp of the time range as UNIX timestamp in milliseconds
end doublerequired
The end timestamp of the time range as UNIX timestamp in milliseconds
Responses​
- 200
- 403
- 500
Ok
- application/json
- Schema
- Example (auto)
Schema
idstringrequired
The identifier of the cluster.
processInstances objectrequired
decisionInstances objectrequired
taskUsers objectrequired
{
"id": "string",
"processInstances": {
"total": 0
},
"decisionInstances": {
"total": 0
},
"taskUsers": {
"total": 0,
"assignees": [
"string"
]
}
}
Forbidden
Server-side error
Authorization: http
name: bearertype: httpscheme: bearerbearerFormat: JWT
- curl
- java
- nodejs
- csharp
- python
- go
- CURL
curl -L 'http://localhost:8080/admin-api/usage-metrics' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'