There are two functions you can use to search for issues that are in a certain state of SLA goal:
For example, if you wanted to find all the issues in your project that have successfully completed your first-response goals, use the following query:
"Time to first response" != everBreached()
There are three functions you can use to search for issues that are in a certain state of completion:
The paused and running functions do not return issues whose SLA cycles haven't started yet.
For example, if you want to find all the issues that are paused while completing a time to resolution SLA cycle, use the following query:
"Time to resolution" = paused()
There are two functions you can use to search for issues that have a certain amount of time on their SLA cycle's clock:
For example, if you want to find requests that have been waiting for a first response for less than 10 minutes, use the following query:
"Time to first response" < elapsed("10m")Or, if you want to find issues that will breach their resolution target within the next two hours, use this query:
"Time to resolution" < remaining ("2h")