Configure JQL Queries.
You can display new fields in the JQL navigator and dashboards.
- "DATE:FIELD_NAME" = startOfDay()
- Available DATE values:
- "started:FIELD_NAME" > startOfDay()
- "paused:FIELD_NAME" > startOfDay()
- "stopped:FIELD_NAME" > startOfDay()
- "failed:FIELD_NAME" > startOfDay()
- "state:FIELD_NAME" = STATE - to search by state of timers.
- Available STATE values:
- "state:FIELD_NAME" = running
- "state:FIELD_NAME" = pause
- "state:FIELD_NAME" = completed
- "state:FIELD_NAME" = failed
-
- "hours TIME:FIELD_NAME" > 2 - to search by time in hours.
- "minutes TIME:FIELD_NAME" > 45 - to search by time in minutes.
- Available TIME values:
- "hours TimeSpent:FIELD_NAME" > 2 and "minutes TimeSpent:FIELD_NAME" > 45
- "hours PauseTime:FIELD_NAME" > 2 and "minutes PauseTime:FIELD_NAME" > 45
- "hours LeftTime:FIELD_NAME" > 2 and "minutes LeftTime:FIELD_NAME" > 45
"hours TIME:FIELD_NAME" > 2 AND "minutes TIME:FIELD_NAME" > 45 will search for issues that time more than 2 hours and 45 minutes. -
"time in hours TIME:FIELD_NAME" > 1.5 - to search by time in hours. You can enter a fractional number. The all time will be converted to hours in decimal notation.
- Available TIME values:
- "time in hours TimeSpent:FIELD_NAME" > 1.5
- "time in hours PauseTime:FIELD_NAME" > 1.5
- "time in hours LeftTime:FIELD_NAME" > 1.5
-
"time in minutes TIME:FIELD_NAME" > 1.5 - to search by time in minutes. The all time will be converted to minutes.
- Available TIME values:
- "time in minutes TimeSpent:FIELD_NAME" > 90
- "time in minutes PauseTime:FIELD_NAME" > 90
- "time in minutes LeftTime:FIELD_NAME" > 90
- 'For sorting, you can use any of these fields with the obligatory indication of 'ASC or DESC
- ... ORDER BY "minutes TimeSpent:FIELD_NAME" ASC