I want to create a filter to collect issues based on the time of day they are created, regardless of date, and another filter for the time of day resolved.
My goal is to determine how many issues are being created and how many resolved during U.S. business hours vs. how many are created and resolved during India business hours. The date is not relevant to this query.
Any suggestions? I searched for an answer, and everything I found includes having to specify dates either explicitly of relatively using "startof" functions.
We are using JIRA 6.3.12 now, and have plans to move to JIRA 7.1.
We have the JQL Tricks Plug-in v5.3.10, but I didn't find anything there.
https://marketplace.atlassian.com/plugins/com.j-tricks.jql-plugin/server/overview
Can we do -
created >>= startOfDay("8h") AND created >=< startOfDay("17h")
You do not need a plugin for this as they are standard functions in JIRA. Will this work?
ceated >= startOfDay()
You can then use arguments inside the function to find issues created after a specific time. For example, issues created after 8:00AM will be:
created >= startOfDay("8h")
You can also use negative values to go back in time if you want to find issues created in a different timezone. Use other functions like endOfDay to filter them down further.
Also, these functions works related to the timezone of the user running the function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Jobin,
Thank you for your suggestion. That is not what I'm looking for.
For example, I want to be able to filter to find all issues that were created between 8:00 a.m. and 5:00 p.m. I want this to search all issues, regardless of the date they were created. startOfDay assumes today's date.
If I want to constrain the results based on dates, I want that to be an entirely criteria from the time of day criteria.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, I see. This will have to be a custom developed function then. You might want to create a feature request for JQLT.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.