Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

CategoryRuleJQL
FastThose that are resolved immediately
project = ServiceDesk and created > startOfMonth() and created <= endOfMonth AND transitionCount = 1
NormalThose that take 2 to 3 interactions
project = ServiceDesk and created > startOfMonth() and created <= endOfMonth AND transitionCount >= 2 AND transitionCount <= 3
LongThose that takes more than 3 interactions
project = ServiceDesk and created > startOfMonth() and created <= endOfMonth AND transitionCount >= 4


Grouping of workflow statuses

For a complex workflow which have more than 10 statuses to facilitate granular tracking, it will be very difficult for high level reporting. You can have the best of both worlds by using the plugin to group related workflow statuses together

StageStatusesJQL
Analysis
  • open
  • Pending estimation
  • Pending approval
  • Design
status in (open, "Pending estimation", "Pending approval", "Design")
Development
  • Development
  • Pending vendor
status in (Development, "Pending vendor")
Testing
  • Pending SIT
  • Pending UAT
status in ("Pending SIT", "Pending UAT")
Deployment
  • Pending Deployment
  • Pending User Confirmation
status in ("Pending Deployment", "Pending User Confirmation")
Completed
  • Resolved
  • Closed
status in ("Resolved", "Closed")


Reporting on the number of days to close the ticket

...