Hi
I have been trying to find a a way to make a JQL filter to get a list of issues which have been resolved less than an hour . which means resolved - created is less than 1 h .
haven't been successful . anyone knows ?
@Olga Videc no it only list those issues resolved in last 59 min ago . what I need is duration of resolving an issue is less than 1 hour
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.
Like @Sreenivasaraju P said scrip runner
Maybe this helps
And then you can filter based on this field
A second possible solution if you use service desk
Create an SLA "TIme to Resolution" set it to 1h and if this SLA is breached the issue is not resolved within an hour
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @NEGAR JALALIAN ,
Out of the box, this is not available. You can any third party plugin like script runner.
Refer
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.
You can also use created and updated. To find issues that were resolved within two weeks of creation, use:
issueFunction in dateCompare( "" , "created +2w > resolutionDate " ) |
Refer
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@NEGAR JALALIAN Well i don't see how you are able to filter in this sense
resolved - created is 1 hour less. I was thinking about dateCompare()
Could your really explain less than an hour ?
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.