Re: [asterisk-users] Asterisk 13. Writing call quality parameters to CDR. How?

2015-03-25 Thread Ethy H. Brito
On Thu, 19 Mar 2015 10:12:22 +0100 Marek Cervenka cerv...@fpf.slu.cz wrote: because of problems you are facing i decided to go way with second table CREATE TABLE `cdr_extended` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `uniqueid` varchar(32) NOT NULL DEFAULT '', `callid`

Re: [asterisk-users] Asterisk 13. Writing call quality parameters to CDR. How?

2015-03-19 Thread Marek Cervenka
because of problems you are facing i decided to go way with second table CREATE TABLE `cdr_extended` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `uniqueid` varchar(32) NOT NULL DEFAULT '', `callid` varchar(256) NOT NULL DEFAULT '' COMMENT 'sip call-id', `hangupcause` varchar(10)

[asterisk-users] Asterisk 13. Writing call quality parameters to CDR. How?

2015-03-18 Thread Dmitriy Serov
Hello. Voice quality when calling - this is one of the most important in the PBX. You need to record the quality parameters for each call to improve. Because the overall quality of a call can only be determined upon completion, I did it in the HangUp handler and wrote in custom fields of CDR.