Statistik-Antwortzeit Auswertung

Hilfe zu Znuny Problemen aller Art
Locked
jbrand
Znuny newbie
Posts: 1
Joined: 13 Jun 2008, 15:56

Statistik-Antwortzeit Auswertung

Post by jbrand »

Hallo,

weiß jemand ob in OTRS mittels des Statistik Moduls die Möglichkeit besteht die Antwortzeiten der Tickets zu erfassen und darzustellen?
Oder gibt es vielleicht jemanden der das schon selbst implementiert hat?

Johannes
Plusque
Znuny newbie
Posts: 1
Joined: 18 Jun 2008, 15:26

Statistik-Antwortzeit Auswertung

Post by Plusque »

Hallo zusammen.

daran wäre auch ich interessiert. oder aber auch tipps wie man sowas selber erstellen könnte.

Gruss
Fr4nkM
Znuny newbie
Posts: 28
Joined: 11 Dec 2007, 13:32
Location: Geesthacht

Statistik-Antwortzeit Auswertung

Post by Fr4nkM »

Ich schiebe den Beitrag mal, bin auch interessiert...^^
Welcome to the real World. Morpheus

OTRS 2.3.1 unter Win2k3 auf VMware-Basis, LDAP Anbindung, MySQL 5.0.37 & Perl 5.8.8, php 5.2.6, FAQ Modul 1.5.3
Fr4nkM
Znuny newbie
Posts: 28
Joined: 11 Dec 2007, 13:32
Location: Geesthacht

Statistik-Antwortzeit Auswertung

Post by Fr4nkM »

Vielleicht ganz hilfreich:

SELECT t.tn, t.title, t.customer_id, t.create_time, MAX( th.change_time ) AS change_time, DATEDIFF( MAX( th.change_time ) , t.create_time ) AS open_days, TIMEDIFF( MAX( th.change_time ) , t.create_time ) AS open_time
FROM ticket AS t
JOIN ticket_history AS th ON t.id = th.ticket_id
JOIN ticket_history_type AS tht ON th.history_type_id = tht.id
JOIN queue AS tq ON t.queue_id = tq.id
WHERE t.ticket_state_id =2
AND tht.id =27
AND th.name LIKE '%closed successful%'
AND t.customer_id LIKE '%'
AND tq.name LIKE '%Lotus Notes%'
AND DATE( t.create_time ) BETWEEN '2008-08-01' AND '2008-08-31'
GROUP BY t.id


Habe ich im Mailing Archiv gefunden und angepasst, sodass man die Queue (hier Lotus Notes) und das Datum (hier Monat August) wählen kann..... ;-)

Trotzdem, wozu gibt es ein Statistikmodul, wenn es nicht das liefert, was man braucht? :-D
Welcome to the real World. Morpheus

OTRS 2.3.1 unter Win2k3 auf VMware-Basis, LDAP Anbindung, MySQL 5.0.37 & Perl 5.8.8, php 5.2.6, FAQ Modul 1.5.3
MrWilson
Znuny newbie
Posts: 1
Joined: 27 Oct 2008, 15:29

Statistik-Antwortzeit Auswertung

Post by MrWilson »

Hallo,

ich habe gerade ein wenig gegoogelt und musste feststellen, dass es ein solches Auswertungsverfahren wohl nicht existiert :(

Oder gibt es in der neuen Version schon eine solche Möglichkeit, weil bei einem Trouble Ticketing System wäre das schon sehr nützlich...

Viele Grüße,
MrWilson
Fr4nkM
Znuny newbie
Posts: 28
Joined: 11 Dec 2007, 13:32
Location: Geesthacht

Statistik-Antwortzeit Auswertung

Post by Fr4nkM »

Also die das SQL Statement scheint zu funktionieren, wir haben damit gerade eine Statistik erstellt, worüber sich Chef sehr gefreut hat! Mein Kollege hat die Anweisung mal mit 2 Tagen ausprobiert und dann die Tickets per Hand nachgezählt, damit wir denn auch wissen, ob das Statement auch was wahres liefert...und das tut es wohl!

Naja mir wäre auch trotzdem lieber, dass das Stats-Modul soetwas mitbringen würde. Ich meine das ist doch extenzieller Natur, um nach Außen gut darzustehen und die Leistung des UHD/Supports berurteilen zu können....

so far..
Welcome to the real World. Morpheus

OTRS 2.3.1 unter Win2k3 auf VMware-Basis, LDAP Anbindung, MySQL 5.0.37 & Perl 5.8.8, php 5.2.6, FAQ Modul 1.5.3
Locked