JQL syntax not working with slaSearch

474 Views Asked by At

I am trying to create a filter that takes in all incidents that are in progress, and have less than or equal to 25% left of their SLA-timer.

issuetype = Incident AND status = "In Progress" AND vertygo in slaSearch(remaining, "<",26%)

The base for that syntax I got from https://jira.valiantys.com/browse/VSLA-917 from Diego Calas in the third comment.

We do have Jira version 6.3.3 which can use the percentages.

1

There are 1 best solutions below

3
On

As per documentation

VertygoSLA uses a single JQL function to run all search options:

<custom_field_name> IN slaSearch(x, y, z)

For instance, you can use

GTR in slaSearch("remaining", "<", "90%")

So use the following

issuetype = Incident AND status = "In Progress" AND vertygo in slaSearch("remaining", "<","26%")