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

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,554,396
Community Members
 
Community Events
184
Community Groups

Getting Actual SLA time of resolved issues

Hello, Community! 

I would like to share a solution to a fairly common problem that you could apply in your practice.

The article consists of the following sections:

  • Task
  • What we have
  • Decision
  • What are the advantages of this solution

  • Conclusion
  • Some ideas

 

Task

Some time ago we ran into the following task:

"How to conduct analytics on the actual time spent on solving problems(retrospective analysis of closed issues)."

What we have

 

Decision

We used Jira Service Desk, where SLA is flexibly considered out-of-the-box.
This is a very convenient and useful feature, without which working with Clients would be less transparent and comfortable.

Some useful docs about SLA:

In simple words, the essence of the SLA in our case is to show "whether we have time to provide a service at the specified time or not?"

Therefore, we see for each issue:

  1. either the time left for us to complete this task
  2. either time exceeded (by how much we have already deviated from the "SLA Goal")

Also, when you hover the mouse cursor over on stopped SLA-indicator, the following appears:

  1. SLA Goal (for example, "24h")
  2. Actual time (for example, "2h")

As you can imagine, the actual time is exactly the indicator that we would like to analyze (build dashboards, upload to CSV/Excel and so on).

But, unfortunately, this indicator could only be obtained in the way described above (by mouse hover) and it was impossible to work with it.

To solve our problem, we used existing JMWE plugin.

Since our process involves one single transition to the final status, we have added 2 post-functions "Set field value (JMWE app)" on this transition, which calculate the actual time in 2 fields.

 

Field 1 (numeric field) - actual time of the solution in minutes.
The post-function consists of:

Field - "field1.name"
Value type - Groovy Expression

Value -

try {
return issue.get ("SLA field name"). completeSLAData.last (). elapsedTime / 60000
} catch (Exception e) {
return null
}

Where - SLA field name is the name of the SLA metric you need.
Result(for example) - 74.371

 

Field 2 (text field) - the actual time of the solution in a pleasant-to-read format.
The post-function consists of:

Field - "field2.name"
Value type - Groovy Expression
Value -

import com.atlassian.core.util.DateUtils
try {
return DateUtils.getDurationPretty (((issue.get ("SLA field name"). completeSLAData.last (). elapsedTime) / 1000) .toLong (), ComponentAccessor.jiraAuthenticationContext.i18nBean.resourceBundle)
} catch (Exception e) {
return null
}

Where - SLA field name is the name of the SLA metric you need.
Result - 1 hour, 14 minutes

 

It is also possible to set the following Options or Conditional execution:

JMWE-1.png

What are the advantages of this solution

  • We try as much as possible to use the out-of-the-box capabilities of Jira Service Desk - in this case, project-administrators are responsible for all SLA settings, they can flexibly define “working hours” and “weekend calendars”, change the conditions for starting / pause / stopping the calculation of SLA-indicators, etc. (for us it is extremely important).
  • This solution can be easily reused in other processes.


Conclusion

We have achieved a fairly simple and flexible solution for the task that we faced.

If you have any ideas how we could improve our solution, please let us know in the comments, we are ready for changes for the better.

If you have any questions - also do not hesitate to ask them in the comments.

I would like to thank the JMWE support service - you can always turn to them for help and get a high-quality recommendation and solution to the problem!

 

Some ideas

In our case, we counted the actual time at the time of resolving (closing) the problem, but if you need to understand the actual time spent at any moment, you can look at the JMCF plugin that will allow you to create a scripted field.

 

Good luck!

0 comments

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events