The resolution time gadget shows the number of days between creation and resolution date. I want to be able to show this in hours or minutes - is there a way to do this using generic addons?
You can do this with the help of Smart QL app
With smartql create a view with query
select FLOOR(resolved TO DAY) resolution, avg(TIMESTAMPDIFF(minute, created, resolved)) td
from core.issues
where resolved between ? and ?
group by FLOOR(resolved TO DAY)
Then plan the SmartQL Chart Gadget on a dashboard.
Configure as follows (change the dates for your needs :) )
Then you will have:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ouch, sorry :/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Graeme,
There is Hourly Period option:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, but that shows the data per hour time slot, not the resolution time in minutes. E.g. with that one I just get 2days as the answer as opposed to 37hrs but shown every hour.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.