]> git.ipfire.org Git - thirdparty/asterisk.git/commit
cdr: Allow bridging and dial state changes to be ignored.
authorNaveen Albert <asterisk@phreaknet.org>
Wed, 1 Jun 2022 16:06:14 +0000 (16:06 +0000)
committerFriendly Automation <jenkins2@gerrit.asterisk.org>
Mon, 10 Oct 2022 17:07:10 +0000 (12:07 -0500)
commitb397dc3ca31548204e7875f65f38988735091a74
treee7fbf39f9410a22eaf9708257e7df210be83a3df
parentf9297117d977b4191e5321c9d8a06d979c379764
cdr: Allow bridging and dial state changes to be ignored.

Allows bridging, parking, and dial messages to be globally
ignored for all CDRs such that only a single CDR record
is generated per channel.

This is useful when CDRs should endure for the lifetime of
an entire channel and bridging and dial updates in the
dialplan should not result in multiple CDR records being
created for the call. With the ignore bridging option,
bridging changes have no impact on the channel's CDRs.
With the ignore dial state option, multiple Dials and their
outcomes have no impact on the channel's CDRs. The
last disposition on the channel is preserved in the CDR,
so the actual disposition of the call remains available.

These two options can reduce the amount of "CDR hacks" that
have hitherto been necessary to ensure that CDR was not
"spoiled" by these messages if that was undesired, such as
putting a dummy optimization-disabled local channel between
the caller and the actual call and putting the CDR on the channel
in the middle to ensure that CDR would persist for the entire
call and properly record start, answer, and end times.
Enabling these options is desirable when calls correspond
to the entire lifetime of channels and the CDR should
reflect that.

Current default behavior remains unchanged.

ASTERISK-30091 #close

Change-Id: I393981af42732ec5ac3ff9266444abb453b7c832
configs/samples/cdr.conf.sample
doc/CHANGES-staging/cdr_ignore.txt [new file with mode: 0644]
include/asterisk/cdr.h
main/cdr.c