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
How do I have the function of time tracking automatically? The purpose is to track total time from issue created to resolved.
Best regards
Ken
Hello @Ken Loh
If you're ok with using third-party add-ons, you can try Time between Statuses (server version) developed by my SaaSJet team.
Just a few clicks and you will get all the necessary data.
I hope you'll find this info helpful
Best regards,
Valeriia
Hi @Ken Loh
Through an automation , you could find the diff between these dates and log them.
Also refer to the answer in https://community.atlassian.com/t5/Jira-Software-questions/How-can-I-list-the-difference-between-the-created-date-and/qaq-p/1874959
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you.
There is a text field named "Handling Time" to track all processing time once the issue has resolved, but the value was in milliseconds.
I have created a custom text field "Total Processing Time" to copy the value of "Handling Time" and plan to convert it to hour (divide by 3600000) through automation. May I know how can I write it in JSON format?
Ken
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ken Loh
You can use the math expressions . See https://confluence.atlassian.com/automation/jira-smart-values-math-expressions-993924866.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Fazila.
I have tried but got error.
Additional fields:
{
"fields": {
{{#=}}{{issue.KenTest SLA}} / 3600000{{/}}
}
}
Error message:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ah.. you are using it in json. You can directly add the field 'Total Processing Time' in the edit action and in the text box give {{#=}}{{issue.KenTest SLA}} / 3600000{{/}}
Like :
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.