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
hello community ,
i have one task to track issues cycle time and lead time in field
we have jmwe plugin, can i somehow track these times with this plugin?
or some different solution to track times in fields
global automation for me is not the solution we have Jira software standard plan in the cloud and tasks is more then 1700 ...
scheduled check i think is okay - ones per day
if someone wants to hear a solution, which I found with JMWE
we create script to track lead time and cycle time
in targetStatuses we need to define which status we want to look.
the trigger I think will be moving to done status action …
{% set dateFormat = "days" %}
{% set history = issue | fieldHistory("status") %}
{% set beginDate = issue.fields.created %}
{% set cycletime = 0 %}
{% set targetStatuses = ["Waiting", "In Progress", "Testing", "Analyzing", "On Hold"] %}
{% for targetStatus in targetStatuses %}
{% for item in history %}
{% set currentStatus = item.from_string %}
{% if currentStatus == targetStatus %}
{% set endDate = item.date %}
{% set currentDiff = endDate | date("diff", beginDate) %}
{% set cycletime = cycletime + currentDiff %}
{% endif %}
{% set beginDate = item.date %}
{% endfor %}
{% endfor %}
{{ cycletime | date("diff", 0, dateFormat) }}
Hello @Giorgi Tsitsvidze
You might find custom scripts to do this with Jira fields but I don't recommend that one. Simply because it will be hard to build and maintain such a solution, you will need to introduce a separate field for each metric you want to track and each workflow you want to put it on. Most importantly, those values will be recalculated every time that field is displayed so it might put too much load on your Jira server.
I suggest you use a marketplace app for this.
Our team at OBSS built Time in Status exactly for this. It is available for Jira Server, Cloud, and Data Center.
Time in Status mainly allows you to see how much time each issue spent on each status or each assignee.
You can combine the time for multiple statuses to get metrics like Issue Age, Cycle Time, Lead Time, Resolution Time etc.
For all numeric report types, you can calculate averages and sums of those durations grouped by the issue fields you select. For example total in-progress time per customer or average resolution time per sprint, week, month, issuetype, request type, etc. The ability to group by parts of dates (year, month, week, day, hour) or sprints is particularly useful here since it allows you to compare different time periods or see the trend.
The app calculates its reports using already existing Jira issue histories so when you install the app, you don't need to add anything to your issue workflows and you can get reports on your past issues as well. It supports both Company Managed and Team Managed projects for Jira Cloud.
Time in Status reports can be accessed through its own reporting page, dashboard gadgets, and issue view screen tabs. All these options can provide both calculated data tables and charts.
https://marketplace.atlassian.com/apps/1211756/
EmreT
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes, we already have this plugin,
but this is not the solution to this question
this is a workaround
bc if u want to see this report for only one or two task, u need to go directly into the app ...
thanks anyway, for creating this plugin :)
best regards
Giorgi Tsitsvidze
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you prefer to use a marketplace app, 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 Lead Time for Each Issue and Cycle Time for Each Issue reports. For further details, you can have a look at Cycle Time and Lead Time in Jira: Productivity Measurement with Two Critical Parameters article and 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.
this is not the solution to this question
this is a workaround
thanks for the offer
best regards
Giorgi Tsitsvidze
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.