[asterisk-users] dialplan =how many concurrent calls

2014-07-10 Thread Rafael Visser
Hi guys. Does somebody knows how to get the concurrent calls from the dial plan? Or. How can i control not to run more than n simultaneus agi applications? Thanks in advance. rv -- _ -- Bandwidth and Colocation Provided by

Re: [asterisk-users] dialplan =how many concurrent calls

2014-07-10 Thread Asghar Mohammad
you can use GROUP and GROUP_COUNT n,Set(GROUP()=aname) n,GotoIf($[${GROUP_COUNT(aname)} 8]?${EXTEN},200) 200,Hangup On Thu, Jul 10, 2014 at 3:24 PM, Rafael Visser visser.raf...@gmail.com wrote: Hi guys. Does somebody knows how to get the concurrent calls from the dial plan? Or. How can

Re: [asterisk-users] dialplan =how many concurrent calls

2014-07-10 Thread Rafael Visser
Works fine.. Thanks Asghar! rv 2014-07-10 9:35 GMT-04:00 Asghar Mohammad asghar...@gmail.com: you can use GROUP and GROUP_COUNT n,Set(GROUP()=aname) n,GotoIf($[${GROUP_COUNT(aname)} 8]?${EXTEN},200) 200,Hangup On Thu, Jul 10, 2014 at 3:24 PM, Rafael Visser visser.raf...@gmail.com