This application calculates time that issue spent between issue events. Calculations can be made according to the working calendar(taking into account weekends, holidays and lunch breaks).
You can search and sort tasks by the "timer" fields. This allows to create queue/filters according to the time metrics.
Fields are also available for export in different formats, which allows you to use your favourite reporting tools: excel, rest api, dashboards, etc.
Where to begin?
- Create a work calendar. To do this, go to the adjacent tab: Calendars.
- Create fields to track the time between issue events. To do this, go to the adjacent tab: "Timer fields".
- Configure JQL Queries.
- You can display new fields in the JQL navigator and dashboards. {this.state.isDownloaded?"(π examples are clickable)":"(π Clickable examples will be here after creating the timer)"}
- "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
- "DATE:FIELD_NAME" = startOfDay()
- Web panels - Coming soon π
- Timer Archive - Coming soon π
- Contact support in case of difficulties.
The application is now being fine-tuned and improved. Later on, there will be more detailed information about functionality and limitations.