You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
For each ticket, I need to know how many times this one status get updated, i.e. how many times status "In Progress" is set to. What is the best way to achieve this function?
Hi Gil,
if you are looking for programatically,
Here I have made stuff for assignee field from history.You can use status instead of assignee, Here you need to iterate each issue and find out the number of count.
ChangeHistoryManager changeHistoryManager = ComponentAccessor.getChangeHistoryManager(); List<ChangeItemBean> changeItemBeans= changeHistoryManager.getChangeItemsForField(issue, "assignee"); for(ChangeItemBean changeItemBean:changeItemBeans) { // do stuff }
Cheers
Onkar Ahire
or you can use JQL
(status changed from Open to "In Progress" )
and find out the number of issue count.
Cheers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Gil,
In JIRA Enhancer Plugin there are built in counter fileds.
You can define and set your own counters as well.
Tuncay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.