Skip to main content
GET
/
history
/
external-task-log
/
count
Get External Task Log Count
curl --request GET \
  --url http://{host}:{port}/{contextPath}/history/external-task-log/count \
  --header 'Authorization: Basic <encoded-value>'
{
  "count": 1
}

Authorizations

Authorization
string
header
required

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

Query Parameters

logId
string

Filter by historic external task log id.

externalTaskId
string

Filter by external task id.

topicName
string

Filter by an external task topic.

workerId
string

Filter by the id of the worker that the task was most recently locked by.

errorMessage
string

Filter by external task exception message.

activityIdIn
string

Only include historic external task logs which belong to one of the passed activity ids.

activityInstanceIdIn
string

Only include historic external task logs which belong to one of the passed activity instance ids.

executionIdIn
string

Only include historic external task logs which belong to one of the passed execution ids.

processInstanceId
string

Filter by process instance id.

processDefinitionId
string

Filter by process definition id.

processDefinitionKey
string

Filter by process definition key.

tenantIdIn
string

Only include historic external task log entries which belong to one of the passed and comma-separated tenant ids.

withoutTenantId
boolean

Only include historic external task log entries that belong to no tenant. Value may only be true, as false is the default behavior.

priorityLowerThanOrEquals
integer

Only include logs for which the associated external task had a priority lower than or equal to the given value. Value must be a valid long value.

priorityHigherThanOrEquals
integer

Only include logs for which the associated external task had a priority higher than or equal to the given value. Value must be a valid long value.

creationLog
boolean

Only include creation logs. Value may only be true, as false is the default behavior.

failureLog
boolean

Only include failure logs. Value may only be true, as false is the default behavior.

successLog
boolean

Only include success logs. Value may only be true, as false is the default behavior.

deletionLog
boolean

Only include deletion logs. Value may only be true, as false is the default behavior.

Response

Request successful.

count
integer

The number of matching instances.