Playback ivr file slowly, when many concurrent calls are in system and they are hearing that ivr file in the same time

I rather suspect tthat running multiple connections wouldn’t help, as exclusive locks would get applied to database tables, early on and effectively single thread most of hte processing.

I think you would need to apply multiple records ina single transaction (batch processing), which means using some non-transactional temporary storage (currenlty you are using memory, in a very inefficient way, for this).

Once you have batched, you also need to look at the queiry execution plans, to make sure they take advantage of batching, and you have indexes where they help and not where they are just an overhead to updates.

Someone would likely have to dig into the code, identify the causes, fix them, and improve that particular use case. High volume calls are just something that not many Asterisk users actually do.

If you think that CDR may be affecting your audio playback, you should experiment with batch mode in cdr.conf.

This will reduce the CDR writes, freeing up system and network resources. Which may help you verify if the CDR process is affecting the audio playback.

By setting the batch size to a high number, you can force the CDR writes to the specifeid time interval. Allowing you to confirm if the problem changes to where audio playback only slows while the CDR batch is processed.

batch=yes
size=1000000
time=300

You’ll also want to make sure that MySQL is not running on the Asterisk server.

Batch mode in cdr.conf may help here too.

The CDR processing is unlikely to share locks with the audio playout, so, as I’ve already said, if it is havinga any effect it is as the result of generally overloading one of the sytem’s limited resources.

i config batch mode for CDR and today my cdrs become ok and write to db with no delay BUT still bad quality of audio playback.

i have a cisco router and sip trunk from PSTN. my sip trunk is on fiber and connect to switch and then to router , in router i have a dialpeer to my asterisk,
is there any problem with codec?!
ivr files need transcoding?
maybe in high volume of calls , just playing file face with problem !!!

Packet Loss

The output of sip show channelstats also shows you’re losing a fraction of the packets, in both directions. But that may only cause “choppy” audio, not the slow playback you described.

CDR

Using batch mode, is the easiest way to disprove it’s affecting Playback(), without disabling CDR altogether. It also reduces some of the network load, instead of doing a DB write after each call.

Transcoding is Expensive!

It’s been mentioned before and you need to evaluate everything in the call path!

Avoid transcoding whenever you can!

You should try to force your system to ONLY alaw or μlaw, everywhere in the call path. Once a call reaches the PSTN, it’s always going to be alaw or μlaw, depending on the regional carrier.

; /etc/asterisk/sip.conf
; ----------------------------------------
;
; - Only µ-law Codec (Japan)
; 
disallow=all
allow=ulaw
;

If it’s not alaw or μlaw, it will be transcoded somewhere along the way.

Slow Playback()

This type of issue is typically because of transcoding. It happens when an audio file that’s 16 kHz is improperly read as 8 kHz, resulting in audio that’s slow and drawn out.

Disk access (I/O) would would normally result in an inconsistent Playback(), I/O issues present as prolonged silence at the beginning of the audio.

pstn codec is alaw and ulaw , in trunk with pstn i use ulaw and alaw,
but about file, im not sure its 16 or 8 khz.
could you guide me to a software that convert best for me ?
ofcourse on that times that i have problem, i test another call to one of asterisk default voice (gsm), but same slow audio .

i checked average load of system with uptime, when my system load reached to 10 or more , my audio became slow and drawn out:
load average: 18.78, 15.81, 14.76

i think cdr processing made this lag in my system.

imagine a call :
call come in a queue and then agent 100 ring and not answer -> 1 cdr at this time
then try some other agent that are “NOT_INUSE” as devise_state ****
again agent 200 and he answer -> 1 cdr at this time
–> at the end of call it will write CDR for all “NOT in USE” agent too:
my agents are LOCAL ones,

[queue-agent]
exten => 100,1,Set(__type=SIP)
exten => 100,n,macro(dial-agent,100)

[macro-dial-agent]
exten => s,1,Set(__DEXTEN=${ARG1})
exten => s,n,SIPAddHeader(CallId:${callid})
exten => s,n,SIPAddHeader(CallLogId:${calllogid})
exten => s,n,SIPAddHeader(FlowId:${flowid})
exten => s,n,ExecIf($["${DEVICE_STATE(SIP/${DEXTEN})}"!="NOT_INUSE"]?macroExit())
exten => s,n,dial(${type}/${DEXTEN},12,TtgB(queueack^s^1)M(connect2^${callid}))
exten => s,n,verbose(status of DIAL: ${DIALSTATUS})

queue show 7025 :
LOCAL/100@queue-agent
LOCAL/200@queue-agent
LOCAL/150@queue-agent
LOCAL/250@queue-agent
LOCAL/110@queue-agent
LOCAL/220@queue-agent

in one queue i have 50 agents , and cdr made 50 cdr for each time that call try all agents EVEN “NOT_INUSE” agent, that is not usefull cdrs .
can i disable such cdrs ,

i use NOCDR() in first line of [macro-dial-agent] context but no effect,
please help :pray::pray::pray::pray:

thank for your kind help,
by the way i check sip show channelstat, every think is ok and i dont have choppy voices.

when this problem happen , even my recorded calls (with mixmonitor) are not well recorded and they dont have quality.

i record all calls from the first , even when playing ivr and music on hold of queue and …
do you think can it make the problem ???

You need to understand, a system load of 1.00 equates to 100% of the systems CPU resources. Anything >1.00 and you’ll have issues with real-time processing.

For the audio, I use: sox for audio conversion to μlaw and I only have the desired format in the audio directory.

I think that’s too vague. “Load Averages” refer to the run queue of the processors which includes waiting tasks, i.e. there is no direct relationship to what is commonly described as “load” or system resources.

I have a virtualized ZoneMinder server running with 16 cameras (some with 720p) on 8 CPU cores leading to load average values between 0.3 and 2.5 (depending on what is going on). The bottleneck turned out to be disk access, which needed some tuning or the load averages would grow exponentially. I’ve never come close to the values that are given here for an Asterisk server.

I think the high load averages are mainly due to blocking and not real resource exhaustion in this case. That said, faeze is trying to solve too many difficult problems at the same time, methinks.

thanks , but how can i monitor this real time processing issues?

This type of issue is *typically* because of transcoding. It happens when an audio file that’s `16 kHz` is *improperly* read as `8 kHz` , *resulting in audio that’s slow and drawn out.*

what is exact parameter for converting?
i use switch plus (NCH software)
encoding: ccitt u-law
format : 8 KHZ -8bit mono

please tell me your sox command for converting

Point taken, my response was generalized. Shouldn’t have said “CPU. I was really just trying to empathize that >1 and something is waiting for a resource.

I’ve actually been in a similar situation with Asterisk. 300+ instances of Playback() where disk access was the culprit, system load got upwards of 30. But still, that causes choppy audio and not the slow issue as described here.

I used a RAM disk, some caching, and other strategies to reduce the average system load.

In this case, transcoding is probably happening -or- Playback() does not recognize the audio has a higher sample rate.

Off the top of my head, IDK. Don’t have access at the moment. But you can search this forum for “sox” to see various examples.

i think so, acctually untill the call be answered all the time audio is playing.
first ivr voice and then when go to queue, custom music on holds are playing
and all files were converted with same solution and parameters.

please guide to a best and optimized way to convert all files.

can i check transcoding process in asterisk console?

can you share me your strategies to reducing the average load ?
what caching ?
i added 40 core cpu and 40gig ram and 40G hard disk and an extra 4 Tera disk for recording calls.
is you senario on a VM or physical server?

now my average load is 48 :astonished::flushed:

[root@astrsk ~]# asterisk -rx “core show threads”

0x7f8e09a66700 1284 netconsole           started at [ 1739] asterisk.c listener()
0x7f89f7fff700 1283 netconsole           started at [ 1739] asterisk.c listener()
0x7f8c8f0dc700 1273 do_batch_backend_process started at [ 3534] cdr.c cdr_submit_batch()
0x7f8c8e1b9700 1270 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0bc94700 1258 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0890b700 1253 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8ed71700 1234 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8e0bf700 1230 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0b5be700 1205 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8f4c4700 1178 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0bb9a700 1174 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f89f73ca700 1167 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8d308700 1147 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8faa0700 1130 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8f2034b700 1106 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8c70c700 1101 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e0a795700 1092 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8de4e700 1091 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e081b8700 1082 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8c789700 1050 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8f34d700 1037 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e099e9700 1024 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8ec77700 1019 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f7d8e700 984 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8decb700 978 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8f3ca700 976 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8cc32700 965 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8d673700 944 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e09d54700 925 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8c3a1700 923 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8c9fa700 862 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8c612700 815 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8ddd1700 749 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8e13c700 746 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e0aa83700 733 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e09540700 729 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8d01a700 711 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e0ab00700 705 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8cf20700 699 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f7aa0700 643 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8f5be700 614 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8edee700 610 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f89f7b9a700 608 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8d8e4700 590 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8f1d6700 589 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8fa23700 586 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8d579700 574 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8fc17700 571 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f7b1d700 540 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8c883700 499 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8d7ea700 462 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8e2b3700 439 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8ff82700 431 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f89f78ac700 316 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f89f7159700 131068 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e08a05700 131051 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8d20e700 131033 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e0888e700 131016 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0aee8700 131005 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8fe0b700 130996 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8f447700 130975 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8cf9d700 130967 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8c22a700 130962 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8c41e700 130946 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8f20157700 130926 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0afe2700 130916 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8c97d700 130890 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f79a6700 130877 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8ccaf700 130855 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f89f6fe2700 130783 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8ea83700 130739 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8c49b700 130726 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8d114700 130678 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e08235700 130670 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e09f48700 130621 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e09cd7700 130588 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8d5f6700 130585 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8e524700 130502 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8d6f0700 130491 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8c324700 130484 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f7541700 130441 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8e4a7700 130419 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8f200da700 130378 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e092cf700 130356 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0b253700 130324 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0ae6b700 130302 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0a88f700 130282 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8f159700 130278 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f89f7f82700 130267 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0b05f700 130262 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8cda9700 130245 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0ad71700 130239 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0b3ca700 130233 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8f63b700 130229 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f6f65700 130206 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f734d700 130172 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f89f705f700 130143 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f89f7735700 130102 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0a69b700 130070 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8efe2700 130055 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f89f7929700 130052 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8e5a1700 130027 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8c68f700 129937 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8fe88700 129926 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8ce26700 129890 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8eb7d700 129761 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0b82f700 129745 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0a90c700 129731 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8f8b6ee700 129708 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8ebfa700 129605 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0ac77700 129588 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0bd11700 129505 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8d9de700 129483 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8e812700 129478 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e09ecb700 129464 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0b7b2700 129460 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8e3ad700 129445 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0861d700 129443 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0b2d0700 129427 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0905e700 129278 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e082b2700 129268 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0a61e700 129263 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e0b1d6700 129218 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8ff05700 129201 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8f8ac700 129170 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8d097700 129135 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8ee6b700 129130 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8f541700 129060 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8da5b700 129033 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8ca77700 128905 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f89f782f700 128881 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8dc5a700 128785 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8caf4700 128772 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8d4fc700 128751 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8dfc5700 128683 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8cd2c700 128672 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8ecf4700 128623 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e0b8ac700 128602 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8f82f700 128516 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8fb1d700 128352 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f89f77b2700 128339 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f71d6700 128281 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e08b7c700 128277 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8c518700 128239 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8fc94700 128218 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8db55700 128024 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e09872700 128015 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0a330700 128014 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0a989700 127990 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8fb9a700 127887 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f89f7e0b700 127885 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0813b700 127879 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8d47f700 127874 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8e88f700 127775 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8dcd7700 127764 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e09446700 127759 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e0a5a1700 127662 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8eee8700 127549 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e0b34d700 127522 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8cbb5700 127479 ooh323c_call_thread  started at [  169] ooh323cDriver.c ooh323c_start_call_thread()
0x7f8c8d867700 127430 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f89f7253700 127348 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e08bf9700 127324 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8e90c700 127317 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e08429700 127307 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8d76d700 127306 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8e08ee7700 127188 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8df48700 126892 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8e42a700 126881 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8e330700 126872 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f89f76b8700 126861 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f89f7f05700 126315 bridge_channel_ind_thread started at [ 1874] bridge.c bridge_impart_internal()
0x7f8c8f929700 125697 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8e08a82700 125670 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e0b735700 125291 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8d961700 125273 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8c8c130700 125055 ooh323c_call_thread  started at [  169] ooh323cDriver.c ooh323c_start_call_thread()
0x7f89f763b700 124963 mixmonitor_thread    started at [  984] app_mixmonitor.c launch_monitor_thread()
0x7f8c8c806700 124941 pbx_thread           started at [ 4634] pbx.c ast_pbx_start()
0x7f8e08f64700 109401 handle_tcptls_connection started at [  854] tcptls.c ast_tcptls_server_root()
0x7f8e09734700 40094 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0996c700 40093 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e091d5700 40092 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e093c9700 40091 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8f202ce700 40090 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0b63b700 40089 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0adee700 40088 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0acf4700 40087 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e08e6a700 40086 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e095bd700 40085 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e08523700 40084 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09e4e700 40083 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0b6b8700 40082 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0a13c700 40081 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0b159700 16490 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0869a700 16489 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8f8b865700 16488 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09158700 16487 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e08d70700 16486 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e090db700 16485 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0bd8e700 16484 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0a718700 16483 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e098ef700 16482 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e094c3700 16481 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0aa06700 16480 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0b447700 16479 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0b4c4700 2679 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8f8b5f4700 2246 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0af65700 2245 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0a0bf700 2244 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09dd1700 2243 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e08717700 2242 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8f137fe700 2241 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e08cf3700 2240 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09fc5700 119961 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e096b7700 119960 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0a3ad700 119959 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0934c700 119958 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09252700 117480 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e08fe1700 117479 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0b9a6700 117478 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0bc17700 117477 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0a4a7700 116112 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0a42a700 116111 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0ab7d700 116110 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e0abfa700 116109 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09ae3700 115667 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09b60700 115666 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09bdd700 115665 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8e09c5a700 115664 worker_start         started at [ 1079] threadpool.c worker_thread_start()
0x7f8f203c8700 105519 inotify_daemon       started at [  426] stdtime/localtime.c add_notify()
0x7f8f8b671700 105237 autoservice_run      started at [  234] autoservice.c ast_autoservice_start()
0x7f8e0be0b700 105157 monitor_sig_flags    started at [ 4812] asterisk.c asterisk_daemon()
0x7f8e0be88700 105156 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8e0bf05700 105155 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8e0bf82700 105154 do_monitor           started at [ 5924] chan_unistim.c restart_monitor()
0x7f8e0bfff700 105153 do_monitor           started at [ 1183] chan_phone.c restart_monitor()
0x7f8eac07e700 105152 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eac0fb700 105151 process_clearcache   started at [ 2281] pbx_dundi.c start_network_thread()
0x7f8eac178700 105150 process_precache     started at [ 2280] pbx_dundi.c start_network_thread()
0x7f8eac1f5700 105149 network_thread       started at [ 2279] pbx_dundi.c start_network_thread()
0x7f8eac272700 105148 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eac2ef700 105147 cleanup              started at [  410] pbx_realtime.c load_module()
0x7f8eac36c700 105146 scan_thread          started at [  954] pbx_spool.c load_module()
0x7f8eac3e9700 105145 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eac466700 105144 lock_broker          started at [  524] func_lock.c load_module()
0x7f8eac4e3700 105143 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eac560700 105142 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eac5dd700 105141 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eac65a700 105140 check_expiration_thread started at [  101] res_pjsip_registrar_expire.c expiration_global_loaded()
0x7f8eac6d7700 105139 do_monitor           started at [ 3958] chan_mgcp.c restart_monitor()
0x7f8eac754700 105138 network_thread       started at [12641] chan_iax2.c start_network_thread()
0x7f8eac7d1700 105137 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eac84e700 105136 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eac8cb700 105135 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eac948700 105134 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eac9c5700 105133 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eaca42700 105132 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eacabf700 105131 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eacb3c700 105130 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eacbb9700 105129 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eacc36700 105128 iax2_process_thread  started at [12619] chan_iax2.c start_network_thread()
0x7f8eaccb3700 105127 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eacd30700 105126 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8eacdad700 105125 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eace2a700 105124 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8eacea7700 105123 do_monitor           started at [29687] chan_sip.c restart_monitor()
0x7f8eacf24700 105122 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8eacfa1700 105121 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8ead01e700 105120 accept_thread        started at [ 8539] chan_skinny.c config_load()
0x7f8ead09b700 105119 do_monitor           started at [ 4099] chan_ooh323.c restart_monitor()
0x7f8ead15c700 105118 ooh323c_cmd_thread   started at [  206] ooh323cDriver.c ooh323c_start_stack_thread()
0x7f8ead21d700 105117 ooh323c_stack_thread started at [  201] ooh323cDriver.c ooh323c_start_stack_thread()
0x7f8ead29a700 105116 do_monitor           started at [11704] chan_dahdi.c restart_monitor()
0x7f8eadb18700 105114 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8eadb95700 105113 do_timing            started at [  437] res_timing_pthread.c init_timing_thread()
0x7f8eadc12700 105112 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f13510700 105108 do_refresh           started at [ 1889] res_calendar.c load_module()
0x7f8f1358d700 105107 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f1360a700 105106 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8f13687700 105105 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8f13704700 105104 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8f2135f700 105092 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8f880a2700 105091 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8811f700 105090 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8f8af1e700 105089 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8af9b700 105088 sched_run            started at [  217] sched.c ast_sched_start_thread()
0x7f8f8b018700 105087 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b095700 105086 desc->accept_fn      started at [ 1268] tcptls.c ast_tcptls_server_start()
0x7f8f8b112700 105085 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b18f700 105084 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b20c700 105083 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b289700 105082 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b306700 105081 do_cdr               started at [ 4137] cdr.c cdr_enable_batch_mode()
0x7f8f8b383700 105080 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b400700 105079 do_devstate_changes  started at [  646] devicestate.c ast_device_state_engine_init()
0x7f8f8b47d700 105078 bridge_manager_thread started at [ 4910] bridge.c bridge_manager_create()
0x7f8f8b4fa700 105077 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b577700 105076 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f8b76b700 105072 logger_thread        started at [ 1705] logger.c init_logger()
0x7f8f8b8e2700 105069 listener             started at [ 1799] asterisk.c ast_makesocket()
0x7f8f90246700 105068 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f902c3700 105067 default_tps_processing_function started at [  202] taskprocessor.c default_listener_start()
0x7f8f90340700 105066 db_sync_thread       started at [ 1022] db.c astdb_init()
304 threads listed.

[root@astrsk ~]# asterisk -rx “core show channels”

Channel              Location             State   Application(Data)             
SIP/3630-00002424    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/3540-00002461    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Set(__ccnumber=096366)        
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
Local/8083@from-inte (None)               Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/3520@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/3530@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/1160@queue-age 8082@queue-agent:1   Ringing AppQueue((Outgoing Line))     
Local/1160@queue-age s@macro-dial-agent:4 Ring    Dial(SIP/1160,12,TtgB(queueack
SIP/3510-000023b0    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/1310-00002445    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/3160@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
Local/3630@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3080-000023dd    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/3340@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
Local/1380@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/1400-0000240f    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/3600-0000242a    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/1430@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/1350@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/1430-00002452    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/1130-000023b9    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/1410@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3650-00002436    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/3130-000023f4    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/1210-0000237c    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/3090@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3430-00002469    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/3650@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/3200@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/3640@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/8083@from-inte (None)               Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/3140-000023f0    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
Local/3430@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3530-00002449    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/1370-0000246c    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
SIP/3450-000023a3    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/1310@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8082@from-internal,
Local/1570@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/1210@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3520-000023f9    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/3660-00002451    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:7    Up      Verbose(queue becomes: CONTINU
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8082@from-inte (None)               Up      AppDial((Outgoing Line))      
SIP/1410-00002472    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/3080@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3340-00002442    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/1440@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3200-000023e1    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/1400@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/3550@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3460-00002466    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/3510@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/1440-0000244b    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/3570@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3640-00002411    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/1130@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte (None)               Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/1390-000023dc    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/3550-0000243a    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/1070@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
SIP/1570-000023a4    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/3480-00002421    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/3190-00002473    3190@from-internal:1 Ringing AppDial((Outgoing Line))      
Local/1390@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3610-0000239e    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/3180@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/3540@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/8083@from-inte (None)               Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/3450@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3160-00002455    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/3130@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/3480@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3180-000023d8    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/1070-00002460    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/1420@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/3570-00002446    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/1380-00002458    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/4080-0000245a    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/8082@from-inte 8082@from-queue:6    Up      Queue(8082,cTt,,,1800,i2.php) 
Local/3460@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/3600@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/3660@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/1350-000023f2    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
Local/4080@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/3140@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/1370@queue-age 8082@queue-agent:1   Up      AppQueue((Outgoing Line))     
SIP/1160-00002476    1160@from-internal:1 Ringing AppDial((Outgoing Line))      
Local/3610@queue-age 8083@queue-agent:1   Up      AppQueue((Outgoing Line))     
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
Local/8083@from-inte 8083@from-queue:6    Up      Queue(8083,cTt,,,1800,i2.php) 
SIP/1420-00002418    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
Local/3190@queue-age 8083@queue-agent:1   Ringing AppQueue((Outgoing Line))     
SIP/10.1.10.86-00002 096366@public:1      Up      Dial(LOCAL/8083@from-internal,
Local/3190@queue-age s@macro-dial-agent:4 Ring    Dial(SIP/3190,12,TtgB(queueack
SIP/10.1.10.86-00002 096366@public:1      Up      Read(key,/mnt/iwinstorage/iwin
SIP/3090-0000245f    s@macro-dial-agent:1 Up      AppDial((Outgoing Line))      
SIP/10.1.10.86-00002 096366@public:1      Up      Set(__actionid=553303190478979
116 active channels
68 active calls
26979 calls processed