Is this possible in custom field or scripted field.
Calculate the time duration of ticket
calculation is start when ticket is entered to open status close when ticket entered to closed status.
kindly suggest their is any alternate way to calculate time duration id ticket.
Hello Suseendran,
As the Product Manager for Time in Status, I am delighted to hear that you are benefiting from our product. If you have any comments, suggestions or questions, please feel free to contact me at plugin@obss.tech
I'll be happy to help!
Update on May 9th, 2024: Time in Status by OBSS was recently rebranded as Timepiece. It is still the same capable app with the same dedicated team behind it. The answer below mentions the app as "Time in Status" but you can find the app in the marketplace as "Timepiece (formerly Time in Status)".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Suseendran Rajkumar
As an alternative, you can try Time in Status for Jira Data Center developed by my team. It generates 3 types of status time reports.
During 2023 we did not provide Data Center version, but now we are available.
I'm sure that our add-on will help you find bottlenecks.
>> Try it free for 30 days.
🔥 Exciting insights and powerful results in your work!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you try something like this?
import com.atlassian.jira.component.ComponentAccessor
def createdDate= issue.created as Date
def resolutionDate= issue.resolutionDate as Date
def durationMillis = resolutionDate.getTime() - createdDate.getTime()
def duration = (durationMillis/1000).toLong()
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.
as Scripted Field
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found another way to calculate total duration of Ticket.
Thanks for suggesting script it also need full.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As an alternative, you can try Status Time Reports app developed by our team. It mainly provides reports and gadgets based on how much time passed in each status.
Here is the online demo link, you can see it in action and try without installing the app. For your case, you can have a look at Time in Status for Each Issue report. You can filter by Issue Type, Status, Assignee, Created fields or by typing your own JQL(using "Switch to JQL" button). For further details, you can have a look at Status Time Reports How to Videos.
If you are looking for a completely free solution, you can try the limited version Status Time Reports Free.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Suseendran Rajkumar
It's a popular request in the community and I hope you find the solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes i found a solution with a plugin.
Its wonder to explore new thing in jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
could you share the plugin that helped you, that other members might benefit from the same insight?
Thanks in advance,
-Darren
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.