[asterisk-bugs] [JIRA] (ASTERISK-25179) CDR(billsec, f) and CDR(duration, f) report incorrect values

ServTelAr (JIRA) noreply at issues.asterisk.org
Wed Jan 20 09:54:33 CST 2016


    [ https://issues.asterisk.org/jira/browse/ASTERISK-25179?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=229079#comment-229079 ] 

ServTelAr commented on ASTERISK-25179:
--------------------------------------

Hi Matt

Great, worked like a charm:

[2016-01-20 12:45:38.477] DEBUG[14848]: pbx.c:4618 ast_str_substitute_variables_full: Function CDR(duration,f) result is '10.271717'
[2016-01-20 12:45:38.477] DEBUG[14848]: pbx.c:4618 ast_str_substitute_variables_full: Function CSV_QUOTE(10.271717) result is '"10.271717"'
[2016-01-20 12:45:38.477] DEBUG[14848]: pbx.c:4618 ast_str_substitute_variables_full: Function CDR(billsec,f) result is '7.253883'
[2016-01-20 12:45:38.478] DEBUG[14848]: pbx.c:4618 ast_str_substitute_variables_full: Function CSV_QUOTE(7.253883) result is '"7.253883"'

Master.csv on custom:
"""2300"" <2300>","2300","2222","common","SIP/2300-00000000","","Wait","60","2016-01-20 12:45:28","2016-01-20 12:45:31","2016-01-20 12:45:38","10.271717","7.253883","ANSWERED","DOCUMENTATION","","MORN-1453304728.0","",0

Thanks a lot!

> CDR(billsec,f) and CDR(duration,f) report incorrect values
> ----------------------------------------------------------
>
>                 Key: ASTERISK-25179
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-25179
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: CDR/cdr_custom, Functions/func_cdr
>    Affects Versions: 13.4.0
>            Reporter: Gianluca Merlo
>            Assignee: Matt Jordan
>         Attachments: ASTERISK-25179-13-2.diff, ASTERISK-25179-13.diff
>
>
> Hello,
> I noticed, while reviewing CSV CDRs created with cdr_custom, that while CDR(billsec) and CDR(duration) report correct values, the corresponding high precision values CDR(billsec,f) and CDR(duration,f) are wrong. More specifically these values seem to be a thousandth of their non-high-precision counterpart (e.g. if CDR(billsec) is 37, CDR(billsec,f) is 0.037000 ).
> It seems to me that the code in funcs/func_cdr.c gets this value via ast_cdr_getvar() (from main/cdr.c), and assumes that the returned value is in milliseconds, this dividing the value by 1000. The problem appears to be that ast_cdr_getvar() gets the value via cdr_object_format_property() and thus via two specialized functions
> * cdr_object_get_duration()
> * cdr_object_get_billsec()
> which both return the value in seconds. General assumptions seem to indicate that internal representation of these values should be considered in milliseconds. I hope you can verify my guesses, and provide a consistent fix.
> As a side note, I can confirm that the issue was not present in the 1.8 series, and that the affected portions of code have been reorganized since then. In that version, values were returned in milliseconds, and the CDR() functions handled them properly.



--
This message was sent by Atlassian JIRA
(v6.2#6252)



More information about the asterisk-bugs mailing list