The add-on enables precise and accurate searching for SLA issues.
JQL Functions
SeeĀ JQL Functions
Alias Searching
Available app version 2.3.5.
...
Alias | Key | Type | Value | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
slaOn | slaon | String | true/false | Whether or not the issue is in the scope of a SLA
| ||||||||
slaName | slaname | String | any | The name of the current or last used SLA
| ||||||||
slaSpentTime | time | Number | A positive integer | The Time Spent in seconds
| ||||||||
slaDate | dateiso | Date | A string representation of a Date | The time and date of when SLA Values was updated by the Add-on
| ||||||||
slaETA | etaiso | Date | A string representation of a Date | The time and date of when the issue should be completed with the current SLA - The Target Date.
| ||||||||
slaPaused | paused | String | "Paused" or "Not Paused" |
| ||||||||
slaPausedDate | pauseddateiso | String | A string representation of a Date | The date of when the issue was paused.
| ||||||||
slaIssue | issueid | Number | The issue id (not issue key) |
| ||||||||
slaFirstResponseStatus | frstatus | String | AHEAD, BEHIND, DELAYED, OK |
| ||||||||
slaFirstResponseDate | frdateiso | Date | A string representation of a Date |
| ||||||||
slaFirstResponseTime | frtime | Number | A positive integer | The time in seconds before first response was intiated.
|
It is not guaranteed that an issue will contain all property keys.
Issue Property Searching
All issue SLA Values are stored as issue properties and as such enables fast and effective JQL searching.
...
Code Block | ||
---|---|---|
| ||
issue.property[slatimer].sla in slaName("P1","P2:) //issue with a sla named p1 or P2 issue.property[slatimer].slaname = "p1" //issuea with a sla named p1 issue.property[slatimer].time = 3600 //spent time is equal to 1 hour = 3600 seconds issue.property[slatimer].time = slaToSecons("1h") //spent time is equal to 1 hour = 3600 seconds issue.property[slatimer].etaiso > now() //target date less than current date and time issue.property[slatimer].paused = "Paused" //issue is paused |
SLA Values
The SLA Values are the values the Add-on stores for an issue.
...