Hello,
I have in a report of June a call (in england) with "ongoing" on the "Disconnected" column.
I try to find this call in mysql database (france) :
my query :
SELECT `time_id` , FROM_UNIXTIME( time_id ) AS datetim, `partition` , `call_id` , `queue` , `agent` , `verb` , `data1` , `data2` , `data3` , `data4` , `serverid` , `unique_row_count` , `data5`
FROM `queue_log`
WHERE time_id > UNIX_TIMESTAMP( '2015-06-30 10:00:00' )
AND time_id < UNIX_TIMESTAMP( '2015-07-01 10:00:00' )
AND `agent` LIKE 'agent/5XXXXXXXX'
how can i be sure that i'm on the good call (timestamp conversion = date on realtime page of QM )?
where can i find laps time of this call (more than 1 hour) ?
if it is a evil hang up call, how it appears in mysql ?
where can i find documentation of table of quemetrics especially the column verb of queue_log table ?
what mean keys :
CONNECT
TRNASFER
REMOVEMEMBER
A great thanks if someone can answer one of this questions !
thanks,