name 4 statuses of an SLA
running
paused
completed
breached
name two functions filtering breached issues
breached()
everBreached
difference between breached() and everBreached()
the former looks at the current cycle only
the latter looks at ALL cycles (e.g. including already terminated ones)
what field can you use to filter issues based on a specific SLA status ?
Jira uses one specific field for every SLA. Find the name of the field using the advanced search with the name of the SLA
list 6 SLA JQL functions
paused() running() completed() breached() everBreached() withinCalendarHours()
list 2 SLA Time JQL functions
elapsed()
remaining()
syntax to filter all issues with their current “response time” SLA cycle having less than one hour remaining
“response time” < remaining(“1h”)