Report on the work done in the weekly mode by users in jira

How can I view the running / running task weekly by users in jira ??

Thanks in advance.

+3


source to share


2 answers


Your question is not very clear, what do you mean by action / in process? the status of the question? and saying how can I know what exactly you mean? to see them from Jira? send weekly mail?

Anyway, in case, by saying what is done / in progress, you imply that the problem is closed / not closed, and you are looking at the correct JQL query, than:

Closed last week:

project = Development and status = Closed and updated >= "-7d"

      

Worked last week, but didn't close:



project = Development and status != Closed and updated >= "-7d"

      

Opened last week but not closed:

project = Development and status != Closed and created >= "-7d"

      

etc. Visit JIRA Advanced Search to select additional queries . If you have any more questions, do not hesitate to ask.

+5


source


I wrote a simple cli jira-report tool that queries your jira and prints a weekly report to the console:

$ jira-report
Jira site address: https://jira.company.com
Username for 'https://jira.company.com': admin
Password for 'https://jira.company.com':
Connecting to 'https://jira.company.com'. Pls wait...

What was [admin] doing:

Created: 2
  WFM-7180 - Provide static context for log property in BasicHashAnalyzer
  TST-5862 - Unable to install Nginx on HP-UX with Java 6

Resolved: 8
  GSM-364 - Migration of existing scenario
  WFM-5865 - NullPointerException while finding categories
  TST-5864 - Some NGinx installation improvements
  TST-5863 - NGinx minimal dependency
  SDK-7139 - Move common interfaces and classes from into individual jar
  SDK-7138 - Move common interfaces and classes from into individual dll
  TST-7111 - Event.getDonotNotify doesn't indicate about agent state
  TST-6985 - TST classes should have static Log fields

Reopened: 0

Closed: 5
  TST-6943 - Remove redundant org.apache.log4j dependency from common part
  TST-5862 - Unable to install NGinx on HP-UX with Java 6
  TST-5857 - Put back support for Jdk 1.6
  TST-5840 - NGinx fails to handle interaction initiated
  GSM-364 -  Migration of existing units

      



Enjoy!

+1


source







All Articles