Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JIRA: find all my logged work for last week

Tags:

filter

jira

How would I create a JIRA filter that lists all of the issues on which I've logged time? I can then apply this to the activity stream.

like image 947
BarryPye Avatar asked Apr 18 '14 17:04

BarryPye


People also ask

How do I find my work history in Jira?

In the old view, the work log can be viewed and edited by opening the "Work log" tab on the bottom of the view.

Can you search history in Jira?

You can query the history of Jira issues and access the results effortlessly in a Matrix table. You can achieve this by leveraging the JQL history functions and the Extended JQL functionality of Issue Matrix for Jira.

What is worklogDate in Jira?

The worklogDate function allows Jira users to search for issues where some work was logged at a specific date. For example, the JQL query below will search for Jira issues were work was logged on Feb 22nd 2022: worklogDate = "2022-02-24"

What is Jira workLogAuthor?

Assignee means the person to whom the issue is assigned and workLogAuthor is the person to logs works on the issue i.e. Time spent on the issue can be logged by 10 people and each of them will be workLogAuthor but assignee can only be 1 person for each issue in jira.


2 Answers

Use advance searching via JQL:

worklogAuthor = currentUser()                  AND worklogDate >= "2016/12/01"                  AND worklogDate <= "2016/12/31" 
like image 166
Mahesha Kalpanie Avatar answered Sep 28 '22 04:09

Mahesha Kalpanie


If you have Script Runner installed, you can use the following query. It will show you the issues only where you have logged work in JIRA.

issueFunction in workLogged("after 2014/09/01 before 2015/01/30 by <USER_NAME>") 

Where the dates can be set to the range of the week you want to query, and the USER_NAME can be your username.

Script Runner Documentation

like image 39
Scorypto Avatar answered Sep 28 '22 04:09

Scorypto