Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Grouping helpdesk tickets by region

It is possibly to group the helpdesk tickets by region or customer tier

For a simplified example, if JIRA is set up with a select custom field named Country with the following options

  • Australia
  • Brazil
  • China
  • Canada
  • France
  • India
  • Japan
  • Germany
  • Russia
  • United Kingdom
  • United States

You can define multiple filters according to the region

RegionCountriesJQL
AsiaChina, India, Japancountries in (China, India, Japan)
EuropeFrance, Germany, Russia, United Kingdomcountries in (France, Germany, Russia, "United Kingdom")
North AmericaCanada, United Statescountries in (Canada, United States)
South AmericaBrazilcountries in (Brazil)
OceaniaAustraliacountries in (Australia)

Combined reporting across multiple projects

A scenario is to for management to track the number of user stories completed by each team in the current month. 

You can define multiple filters and feed them into the Multiple Filters Chart Gadget

TeamProjectJQL
AMercury, Venus, Marsissuetype = "User Story" AND resolutiondate >= startOfMonth() AND project in (Mercury, Venus, Mars)
BRuby, Diamond, Sapphireissuetype = "User Story" AND resolutiondate >= startOfMonth() AND project in (Ruby, Diamond, Sapphire)
CZeus, Apollo, Artemisissuetype = "User Story" AND resolutiondate >= startOfMonth() AND project in (Zeus, Apollo, Artemis)


Tracking the number of feedback

A commonly requested feature is to track the number of times the ticket is bounced between the agent and the customer. 

This is possible to do that with the https://innovalog.atlassian.net/wiki/spaces/JMCF/overview#JIRAMiscCustomFields-transitioncountfield.  

To address the requirements of classifying the types of ticket, you can define in the like of following JQL filters 

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


Reporting on the number of days to close the ticket

It is possible to calculate the time taken from creation of closing the ticket in JIRA with the solution from https://answers.atlassian.com/questions/11989264/how-can-i-calculate-time-to-close

RuleJQL

those which take less than 1 day

timeTaken < 1440
those that takes 1 day or not
timeTaken >= 1440 


  • No labels