Can we define SLA's in Jira software using custom fields. Typically, at our end we get dates by when a said task is supposed to be completed but these dates always gets breached. We are currently capturing these dates + the actual time stamp when tickets are moved to next stage. I want to compare these two dates and calculate delta.
Using SLA's as custom fields will not works, as it is working in Jira Service management.
But you can use Start and End date, or use Jira Plan.
Thanks.
Can I clarify the need from the question?
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Stephen,
Please find my response.
1. Its a Jira Project
2. Its basically capturing due date
3. Yes, if issue is not done in due date it is considered as breach
4. Yes, both due date & actual end date (when its moved from one status to next staus) is getting captured
5. Yes, difference between two dates needs to be calculated so we get to know what is the breach rate for a particular team / members
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is possible, but won't utilise the SLA functionality which is just for Jira Service Management.
For my example below, I've assumed:
If this was the case, you could do something like this...
---
Create Custom Field(s)
You need somewhere to capture the difference between the two dates. I'd recommend creating a custom Number Field, for example, Days between Due Date and Resolved Date
This will house the number of days.
Create Automation Rule
The Automation Rule will populate the custom field - and might look something like this:
Logic
---
You could easily extend this example depending on your use case:
{{issue.customfield_10123.diff(issue.customfield_10456).days}}
---
Let us know what you think!
Ste
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.