I need to calculate the ratio of bugs landed in my team but were moved to another team over the number of bugs that were filed against my team.
To do that, I have the following JQL:
issue in (PLT-2200, PLT-2201, PLT-2202, PLT-2203, PLT-2204, PLT-2205, PLT-2206, PLT-2207, PLT-2208, PLT-2209, PLT-2210) and type = Bug
However, Since PLT-2201 was moved to APP-2384, PLT-2203 moved to IT-12834, PLT-2209 moved to OPS-8938, the query fails.
Is there another way to list all the JIRAs that passed through my team, PLT, regardless whether these JIRAs remained in my team or ended up some where else?
Thank you
Marcus
WHAT DOES IT STILL ASK ME TO ANSWER MY OWN QUESTION WHEN I ALREADY DONE IT TWICE???
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.
add customfield something like "Previous Issue IDs " and append latest issuekey to that when the issue moved to other project by using listener(implement your login in move event)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@rambanam,
Here the problem is @marcus wants to see the new issue key(moved one) in search issue navigator not in some custom field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes you are currect!, but later he can do search for old keys as
"Previous Issue IDs" ~ "PLT-2201"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@rambanam,
if there is a direct api from jira , then why to complicate the things :)
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.
Hi Marcus,
you can create a small JQL plugin to get the required result.
API : ComponentAccessor.getChangeHistoryManager().findMovedIssue(oldKey).
This plugin can be developed in no time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use the JQL:
project in (PLT,APP,IT,OPS) and issuetype=Bug
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@ck,
how can you get APP-2384 issue as old key was PLT-2201
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not applicable. It will return JIRAs from extraneous projects, eg, OPS, IT, ...
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.