Skip to content

jira worklog list

  • Usage: jira worklog list KEY... [flags]

List worklogs for one or more issues. Use it to inspect time entries before adding more work or auditing recent activity.

Each issue fetch is capped at the command's page size. Multiple issue keys are queried with bounded parallelism and return per-key results.

Execution

-p --parallelism <N>

Maximum concurrent requests (1-16)

Default: 1

Output fields

With --output json, the response envelope's data object carries these fields. Run jira agent schema for the full machine-readable schema.

Field Type Description
issue.id string
issue.key string
issue.self string
worklogs[].comment object ADF document; null or absent when the worklog carries no comment.
worklogs[].id string
worklogs[].started string
worklogs[].timeSpentSeconds integer

Examples

jira worklog list PROJ-123
jira worklog list PROJ-1 PROJ-2 PROJ-3 # (1)!
jira worklog list PROJ-123 --output=json # (2)!
  1. Fetch several issues with bounded parallelism
  2. Keep worklog output parseable