Edited 6 years ago by aldar
I have CcStats Pro on vanilla asterisk without Freepbx.
How I can display outbound calls?
extensions_custom_asternic_outbound_freepbx.conf dialplan works only for Freepbx.
Do you have dialplan or script that will update queue_log file to track outbound calls too?
I found /usr/src/asternic-stats-pro-2.1.1/docs/README.outbound
[queuedial] ; this piece of dialplan is just a calling hook into the [qlog-queuedial] context that actually does the ; outbound dialing - replace as needed - just fill in the same variables. exten => _XXX.,1,Set(QDIALER_QUEUE=q-${EXTEN:0:3}) exten => _XXX.,n,Set(QDIALER_NUMBER=${EXTEN:3}) exten => _XXX.,n,Set(QDIALER_AGENT=Agent/${CALLERID(num)}) exten => _XXX.,n,Set(QDIALER_CHANNEL=ZAP/g0/${QDIALER_NUMBER}) exten => _XXX.,n,Set(QueueName=${QDIALER_QUEUE}) exten => _XXX.,n,MixMonitor(Q-${QDIALER_QUEUE}-${UNIQUEID}.WAV|b|) exten => _XXX.,n,Goto(qlog-queuedial,${EXTEN:0:3},1)
I don't know how to use it, and is this script what I want?