I want to create a query on a specific point in time.
For example, I want to see all open jira tickets for component X, with break down according to priority.
I want to do this for every Sunday since the beginning of the year 1/1/18, so I see trend of the number of issues for component X per priority
Any ideas how can this be done?
I think what you can benefit from example query:
project = PROJECTKEY AND status WAS Open DURING (startOfWeek(-10), endOfWeek(-10))
It will however need refinement for params of DURING() macro, if you would like to see it with daily resolution
Thanks @Marcin Gebski , the use of week number is excellent.But what I would also like to know if there is a way to query Jira "Snapshot" on a specific point in time
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can not really query a snapshot of Jira.
What you can do, is to use the "WAS"-Operator as mentioned be @Marcin Gebski. This works for some fields, but not for all. If you want to query a specific time instead a date-range, you can use ON instead of DURING.
Please have a look at the advanced searching docu:
There is a more detailed description.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Ziv Farjun
You can set up an JQL filter subscription for sending an email every Sunday for issues since the beginning of the year and order the issues by priority.
https://confluence.atlassian.com/jiracoreserver073/working-with-search-results-861257284.html
A subscription provides you with a periodic notification for all issues returned by the search. If you want to be notified when a particular issue changes, you should watch the issue instead.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Tarun Sapra for your answer.
It will help me understand how many tickets were open in each week and solve the need to send an email each week. But what I would also like to know if there is a way to query Jira "Snapshot" on a specific point in time
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.