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.
Hi everyone!
I have a problem. Some issues have status like done or closed. Also, this issues has a resolution.
But SLA was not stopped.
In database, I see this criterion in table "customfieldvalue":
...{"timeline":{"events":[{"date":1561552301307,"types":["START"]}]},"ongoingSLAData":
{"goalId":116,"startTime":1561552301307,"paused":false,"thresholdData":{"calculatedAt.....
And issues where SLA was stopped after resolution has this criterion:
...{"timeline":{"events":[{"date":1561616106021,"types":["START"]},{"date":1561616266930,"types":["PAUSE"]}]},"ongoingSLAData":{"goalId":111,"startTime":1561616106021,"paused":true,"thresholdData...
I can watch issues where SLA was not stopped by SQL query:
SELECT ji.[ID]
,ji.[pkey]
,ji.[issuenum]
,ji.[RESOLUTION]
,ji.[issuestatus]
,ji.[CREATED]
,ji.[UPDATED]
,ji.[RESOLUTIONDATE]
,cv.textvalue
FROM [SQL12DB3_JIRA].[jira].[dbo].[jiraissue] as ji
join [SQL12DB3_JIRA].[jira].[dbo].[customfieldvalue] as cv
on cv.issue = ji.id and cv.customfield = 12323 and cv.textvalue like '%,"paused":false,%'
where ji.project = 'MyProject' and ji.issuestatus in (10424,11923)
What could be the problem?
Have you double checked your SLA definition?? Maybe the final status is not set to stop the clock.
http://YOUR.JIRA.ADDRESS/servicedesk/admin/YOUR.PROJECT.KEY/sla/custom
Of course, i checked this.
This issues has a not final status. But in this status SLA should have paused.
Now, issues have a status "Done", after this status they will be in status "Closed".
Closed - is final status.
We can resave SLA by ur link. But some time after, we have a new issues with status "Done" and sla is not stopped.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you provide with screeenshots of your SLA configuration and workflow?
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.
The language is a barrier for me, sorry.
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.
From the screenshots I can only state that:
For those issues that you feel haven't managed SLA times proprerly: how do you see them in the UI? does the time just keep counting down?
Can you make a list of every issue (or at least a good number of them) in closed and done status, indicating if they show that "paused":false of "paused":true tag?
I would expect that every Done issue is at true and every Closed issue is at false.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, we can make status "Done" like final status, and SLA will be stopped.
But we need the issue to be reopened if the user is not satisfied, in final status it's impossible.
For example, this isssue:
In database has a paused":false tag
and typical issue, has a "paused":true," tag:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And i have a problem only with status "Done".
Issues with status "Closed" has this tag:
{"timeline":{"events":[{"date":1560915462173,"types":["START"]},{"date":1560934807067,"types":["PAUSE"]},{"date":1561392280510,"types":["STOP","UNPAUSE"]}]},"ongoingSLAData":null,"completeSLAData":[{"succeeded":true,"goalTime":28800000,"goalTimeUnits":{"weeks":0,"remainingDaysWithinWeek":4,"remainingMillisWithinDay":16192933,"breached":false}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looking purely at your workflow and SLA configuration, I think that the only error you have is that once you reopen an issue the SLA timer doesn't start to run again. You should add the status "Assigned" to the start column.
That being said... I see no more suspicious things there.
The concept of reopening makes sense, of course, but you can't do that (from an SLA time management point of view) once the clock has been stoped. I think you're not trying to do this but I'm not certain since transitions are not 100% clear on the diagram.
What do the transitions "from Done to Done" and "from Closed to Closed" do? I just want to make sure that when you reopen a ticket you are moving from Done to Assigned (judging by the workflow diagram) and you're not doing something like going from Closed to Closed but deleting the resolution...
I'm getting out of ideas.
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.
Not change, but ADD.
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.