Hi everyone,
I need to measure all SLA less than 0, to calculate the SLA breached not only when it will be completed, but all status of SLA.
I tried javascript but doesn’t work. I tried like below:
[jira.customfield_rst_break]
name = "RST Break"
data_type = "string"
dimension = true
javascript_code = '''
if (issue.fields.customfield_13227 < "0h 0m")
{
issue.fields.customfield_rst_break = "YES";
}
else
{
issue.fields.customfield_rst_break = "NO";
}
'''
Every time we had NO in this case.
Hi @Wanderson Cardoso de Lima
Do you have a Jira Service Management project?
In that case, you should be able to use the predefined “SLA state” dimension to filter out issues that are now breached, see more here.
And if you want to know which are still running, you can add the SLA state dimension to the report:
Kind regards,
Gerda // support@eazyBI.com
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.