Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

track issues cycle time and lead time in field

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

3 answers

1 accepted

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) }}
111jira.JPG

1 vote
Emre Toptancı _OBSS_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Nov 04, 2023

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

tisCloud_StatusDuration_LeadTime_with Estimates.png    tisCloud_AssigneeDuration.png

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. 

tisCloud_StatusDuration_LeadTime_Average_TimeGrouped.png

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.

Gadget_AverageStatusDurationByComponent.png  tisCloud_StatusDuration_LeadTime_Chart.png tisCloud_IssueView_Data.png

https://marketplace.atlassian.com/apps/1211756/

EmreT

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

Like Gizem Gökçe _OBSS_ likes this
0 votes
Bloompeak Support
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Nov 04, 2023

Hi @Giorgi Tsitsvidze

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.

  • This app has a dynamic status grouping feature so that you can generate various valuable reports as time in status, time in assignee, status entry dates and status counts, cycle time and lead time, average/sum reports by any field(e.g. average in progress time by project, average cycle time by issue creation month).
  • You can search issues by Project, Issue Type, Status, Assignee, Issue Creation/Resolution Date(and any other Date field) and JQL Query.
  • Status durations are calculated according to the working calendar you define. Once you enter your working calendar into the app, it takes your working schedule into account too. That is, "In Progress" time of an issue opened on Friday at 5 PM and closed on Monday at 9 AM, will be a few hours rather than 3 days.
  • You can set different duration formats.
  • You can export reports in CSV file format and open them in MS Excel.
  • You can also add this app as a gadget to your Jira dashboards and reach “Status Time” from Issue Detail page.
  • You can enable/disable access to Status Time reports&gadgets and Issue Detail page per project, users, groups or project role.

If you are looking for a completely free solution, you can try the limited version Status Time Reports Free.

Hope it helps.

this is not the solution to this question
this is a workaround
thanks for the offer

best regards 
Giorgi Tsitsvidze

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events