简体   繁体   English

在整个下午5点至午夜之间创建的JIRA JQL问题

[英]JIRA JQL Issues created between 5pm and midnight for an entire month

Does anyone know how to filter issues in a given project to show only issues that were created between 5pm and midnight for an entire month? 有谁知道如何过滤给定项目中的问题,以仅显示在整个下午5点至午夜之间创建的问题?

I am able to constrain between 5pm and midnight on a single day as below but am unsure how to make it do the whole month: 如下所示,我可以在一天的下午5点至午夜之间进行约束,但是不确定如何在整个月中执行该操作:

project = CI AND issuetype = "Activity" AND (created >= endOfDay('-1860m') AND created <= endOfDay(-1440m))

Had to write a JQL function using the GroovyRunner plugin in JIRA. 必须使用JIRA中的GroovyRunner插件编写JQL函数。 Am having some performance issues which I will put in another StackOverflow question 我遇到了一些性能问题,我将在另一个StackOverflow问题中提出

EDIT: Performance issue post available here: https://stackoverflow.com/questions/18606967/jira-jql-performance-issue-with-custom-function-in-groovyrunner 编辑:性能问题发布在这里: https : //stackoverflow.com/questions/18606967/jira-jql-performance-issue-with-custom-function-in-groovyrunner

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM