The suits from
management in my company want statistics showing the avarage time it takes to
handle tickets in the help desk. That is the avarage time span from ticket
creation to the ticket is closed.
I do that by firing
the following sql-statement in the Select Box (Admin Area):
select
sec_to_time(avg(unix_timestamp(change_time) - unix_timestamp(create_time))) from
ticket
where
unix_timestamp(create_time) > unix_timestamp('2004-05-01
and
unix_timestamp(create_time) < unix_timestamp('2004-05-31
and
ticket_state_id = 2
The example shows the avarage answer time for may 2004
(the result is in: hh:mm:ss)
I am intersted in knowing if anybody is dealing with the same kind of
statistics and hearing if there is a better way to retrieve the same
information.
Elsewise I just want to share my endeavour with whoever is
interested.
Regards
Stig
_______________________________________________ OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs Support oder Consulting f�r Ihr OTRS System? => http://www.otrs.de/
