Skip to main content
GET
/
history
/
job-log
/
count
Get Job Log Count
curl --request GET \
  --url http://{host}:{port}/{contextPath}/history/job-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 job log id.

jobId
string

Filter by job id.

jobExceptionMessage
string

Filter by job exception message.

jobDefinitionId
string

Filter by job definition id.

jobDefinitionType
string

Filter by job definition type. See the User Guide for more information about job definition types.

jobDefinitionConfiguration
string

Filter by job definition configuration.

activityIdIn
string

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

failedActivityIdIn
string

Only include historic job logs which belong to failures of one of the passed activity ids.

executionIdIn
string

Only include historic job 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.

deploymentId
string

Filter by deployment id.

tenantIdIn
string

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

withoutTenantId
boolean

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

hostname
string

Filter by hostname.

jobPriorityLowerThanOrEquals
integer

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

jobPriorityHigherThanOrEquals
integer

Only include logs for which the associated job 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.