[asterisk-users] date - outgoing call
Joseph
syscon780 at gmail.com
Mon Dec 10 23:02:09 CST 2012
On 12/10/12 20:45, Steve Edwards wrote:
>On Mon, 10 Dec 2012, Joseph wrote:
>
>> When a call comes in asterisk records the date correctly but when I cake a
>> call out I get only something like:
>> Date: 60
>> here is an example:
>>
>> From: "7807560785"
>> To: "s"
>> Date: "2012-12-11 00:46:04"
>> Status: "ANSWERED"
>> ----------------
>>
>> From: "5"
>> To: "4331235"
>> Date: 60
>> Status: 4
>
>What version of Asterisk?
>
>Where are you seeing the data you display above?
>
>--
>Thanks in advance,
>-------------------------------------------------------------------------
>Steve Edwards sedwards at sedwards.com Voice: +1-760-468-3867 PST
>Newline Fax: +1-760-731-3000
I'm using this command to pull the records of the cvs:
grep -P '\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2}' /var/log/asterisk/cdr-csv/*.csv | cut -d, -f2,3,10,15 | awk -F"," {'print
"From:\t"$1"\nTo:\t"$2"\nDate:\t"$3"\nStatus:\t"$4"\n----------------\n"'} |tail -60
the actual last records in Master.csv is:
"","5","218","internal","""Cerra"" <5>","IAX2/192.168.141.1:4569-4374","SIP/11-00000180","Dial","SIP/11&SIP/321&SIP/218,25,m(penguin)w","2012-12-11
02:58:53","2012-12-11 02:58:59","2012-12-11 03:00:00",67,61,"ANSWERED","DOCUMENTATION","1355194733.524",""
but with the above command it display:
From: "5"
To: "218"
Date: 25
Status: 67
--
Joseph
More information about the asterisk-users
mailing list