You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I am using the "Total time this issue has been in Progress" Scriptrunner example but it returns complete nonsens.
The issue is just 20 minutes old but the return value is 2 weeks, 12 hours, 59 minutes.
The field is defined wit Duration template and duration searcher as suggested in the Adaptavist Documentation What am I doing wrong.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.history.ChangeItemBean
import org.apache.log4j.Logger
import org.apache.log4j.Level
def log = Logger.getLogger("com.acme.CreateSubtask")
log.setLevel(Level.DEBUG)
def changeHistoryManager = ComponentAccessor.getChangeHistoryManager()
def inProgressName = issue.getStatus().name
log.debug inProgressName
List<Long> rt = [0L]
def changeItems = changeHistoryManager.getChangeItemsForField(issue, "status")
changeItems.reverse().each {ChangeItemBean item ->
item.toString == inProgressName
def timeDiff = System.currentTimeMillis() - item.created.getTime()
if (item.fromString == inProgressName) {
rt << -timeDiff
log.debug "item.fromString:" + item.fromString
log.debug timeDiff
}
if (item.toString == inProgressName){
rt << timeDiff
log.debug "item.toString:" + item.toString
log.debug timeDiff
}
}
def total = rt.sum() as Long
return total ?: 0L
I am not sure if this is the right place to ask such a question.
Thanks a lot,
Peter