similar to: ForkCDR and setting the account info?

Displaying 20 results from an estimated 1000 matches similar to: "ForkCDR and setting the account info?"

2009 Jan 16
2
CDR problems -- two call legs create only one CDR. Using ForkCDR() not even working.
Hello, When I bridge an incoming and outgoing call (attempting to simulate call-forwarding) I'm only getting one CDR -- that of the outgoing call. A (PSTN) calls B (residing on Asterisk) and the Asterisk calls C (cell phone on PSTN) and bridges the call. The only CDR created is from B to C. I have even tried using Answer() and ForkCDR() to get two CDRs, but to no avail. I am starting to
2007 Jun 12
3
CDR changes in Trunk -- Transfers, CDRs, Life, and Everything
I have created an asterisk.org blog entry: http://www.asterisk.org/node/48358 to describe what I will shortly be committing to trunk to correct the weaknesses of CDRs, that asterisk users and developers have been complaining about for quite some time. Highlights: Restructuring the code and philosophy of CDRs. Plans to eliminate the ForkCDR() application Plans to create
2005 Mar 26
1
Transferred calls CDRs
Hello! I have been doing some tests with call transfers and I have been looking at the CDRs that Asterisk generates. Scenario 1: A calls B B answers and does a blind transfer to C (using # key) C answers and talks with A Scenario 2: A calls B B answers and does an attended transfer do C (using the phone's transfer key) C answers, B hangs up, and C talks with A For scenario 1, the CDR shows
2009 Oct 19
3
update CDRs in mysql during a call
All, According to my readings CDRs are stored at the end of the call. My concerns is when asterisk goes down (I know that it's never happen but it's just in case) or when the is a power shutdown of the server. then CDRs are not stored in mysql. is there a way to store periodially CDR during a call, and set the periodical timer regarding the context. if no is there a way to retreive CDR,
2009 Apr 14
4
Ignoring time spent waiting in queue in CDR
Hello, I'm working on an Asterisk configuration for a call center, and they bill based on the time spent talking to an agent, but not for any time spent waiting in a queue. The CDR information contains the entire duration of the call as billable seconds, including time spent waiting in the queue. I would like the billable seconds to only include the time spent actually talking to an agent.
2020 Jan 28
0
How to correctly fork a CDR for billing in a call forwarding scenario?
Hi Gang I have not yet managed to find a solution to correctly generate CDRs for this situation: Alice calls Bob. Bob has call forwarding delayed 20s to Charlie. Charlie picks up immediately. exten => bob,1,DBget(cfwdly=CFDLY/${exten}); $cfwdly contains charlie same => n,Set(CDR(src)=${CALLERID(number)}) ; src 'alice' same => n,Set(CDR(dst)=${exten}) same =>
2008 Dec 07
0
Unexpected behaviour in ForkCDR
Dear members of the list; I am writing in the hope to get some help with a very peculiar problem with my new asterisk 1.6.0.1 installation. The same code runs on version 1.2 without problems, but it seems the behaviour has changed (also on 1.4.7, which I tried). Please consider the following extension: exten => 1213,1,Answer exten => 1213,n,Set(counter=X) exten =>
2008 Feb 18
1
ForkCdr in 1.4.*
Hello, I'm looking for a way to restore old behaviour (before Arkadia patch #0010668) of ForkCDR application in 1.4.18 I've done some research directly in the code (cdr.c & forkcdr.c), but can't find any flag. I am just f*c*ed or do you have something to suggest ? :) Thank you for help. Mathieu
2007 May 15
2
Originate and ForkCDR()
Hi, I'm tryng to place a call through Asterisk Manager Originate Action. Since I want separate CDR for each of the two legs of the call, I'm forking CDR with ForkCDR as the first Channel has picked up. The problem is that, while the first CDR is fine, in the second one the "answer" field is always empty, "billsec" field is 0 and "disposition" field is
2009 Dec 03
1
only the first ResetCDR works after upgrade to 1.6
Hello - I am upgrading from asterisk v1.2 to v1.6 and I am seeing a problem with recording CDRs using MySQL. Unlike all of the other postings and web pages I have found on this issue, my installation successfully stores the -first- CDR, but nothing after that. As background info, I will note that I don't use CDRs for billing, but more in a logging fashion, to record how a given call
2011 Sep 22
2
ForkCDR and asterisk 1.6.1
Hello, In my 1.6.1.18-powered system, I've got the following dialplan (in extensions.ael) : Dial(SIP/foo,15); if (${DIALSTATUS}="NOANSWER") Dial(SIP/bar,15); When SIP/baz dials peer SIP/foo which do not answer, I've got a single CDR entry like this: SIP/baz SIP/bar time_when_foo_started_to_ring time_when_bar_ended_talking ANSWERED How can I get two CDR entries :
2004 Dec 02
0
ForkCDR app call disposition ALWAYS says ANSWERED??????
Hi Guys, The ForkCDR is doing pretty well, except for the call disposition. The time stamps are great, but the disposition always reads answered, even when the call is busy or not answered at all. It should read BUSY and NO ANSWER. I can send a snippet of the CDR record with forked calls for an example if needed. I think the record is not forking properly, but is maintaining the disposition
2010 Nov 05
0
Using Dial() but no CDR is generated for this outcall
Hi, as far as I know my problem is not a bug but wanted behaviour. Let's assume the following dialplan: exten => 123,1,Answer exten => 123,n,Dial(DAHDI/g0/00492112233,20,g) [...] exten => 123,n,Hangup I do an dial-in with my SIP-Client (or phone). The Dial-Application starts the outdial and I get connected with my partner. After hangup, only 1 CDR is generated. But I(!) need 2
2006 Nov 08
0
Warning: "Channel does not have a CDR" when doing ForkCDR
Gang, I'm having this error pop up when I do a ForkCDR, and I'm not sure how to get around it. Here are a few log lines: Nov 8 10:37:08 VERBOSE[28079] logger.c: -- Executing ForkCDR("Zap/49-1", "") in new stack Nov 8 10:37:08 WARNING[28079] app_forkcdr.c: Channel does not have a CDR The scenario occurs like this: I use a .call file to generate a call on
2008 May 27
2
ForkCDR
Hello, CDR fans! I'm looking at some issues brought forward over time: 12726/10668: someone wants me to revert the changes I made via bug 10668, last Sept; (that's they are messing him up. And I didn't do the change suggested in ForkCDR, for fear of lousing up folks depending on current behavior. Which probably sparked: 11721 :
2008 Nov 22
5
CDR Desgin
I've taken the liberty of starting a new thread to discuss the design of the Asterisk CDR mechanism. The discussion has been kindly initiated by murf putting together a proposal: http://svn.digium.com/svn/asterisk/team/murf/RFCs. After reading the proposal I still don't think it's the right way to go. To my mind adding more channel variables increases the complexity in a situation
2010 Sep 23
1
Forking a call
Hi, Using 1.6.2.13. I'd like to know how I can force Asterisk to fork a call. To simplify things, Let's say I have an out context (for outbound calls) and an in (for inbound). If person A wants to call person B, and both are on my servers, I don`t want to send the call out. I want all this to happen internally on my server. The problem is if I use some condition to send
2014 Apr 24
2
cdr viewer for csv
hello everyone. I am running asterisk and all of my CDRs are in the default csv. the system is so limited to ram (only 256) and I cannot run MySQL or any other program to give CDRs a fancy view. at the moment the only other software running is nginx for a static webpage with guidance on the system. I do now want to move to sql or similar databases because the machine cannot handle it (I have
2017 Apr 01
2
Issue with Asterisk 13, multiple CDR per queue and arbitrary upper limit
Hi, I`ve recently upgraded a server from 1.8 to Asterisk 13. While everything is under control, I have one issue with the way CDRs are kept for queues. And I don`t mean ?I don`t like it?. I mean it crashes the server. I realize there are multiple CDRs per queue call ? one per ring/per phone, basically. The issue is that whenever the number of CDRs ?to be recorded? for a call exceeds 5000,
2013 Sep 25
2
mysql CDRs in web based tool
Hi. i am running asterisk 11.5.1 in my system (debian squeeze) and i do get the CDRs through the csv file, that asterisk creates. i would like to have the CDRs in a nice web based tool and after some search i have found http://acdr.com.au/ i do have it installed with all the dependencies (apache, php, mysql), but i do not know how to interface the CDRs. has anyone used this tool or any other