Re: [asterisk-users] Asterisk Manager: equivalent of 'show channels'?

2006-11-18 Thread Marco Mouta

take a look at Flash Operator Panel, as far as i know they use AMI , and
they also provide real time channel status.

On 11/18/06, Michael Collins [EMAIL PROTECTED] wrote:


 I'm interested in knowing if anyone else has worked around this issue:



I have an application that needs to check the status of the calls going
through Asterisk about every 5 seconds or so.  I don't want to do asterisk
–rx 'show channels verbose' at the Linux command line 12 times per minute
so I am looking at the AMI.  I see that there isn't a manager command for
'show channels.'  Has anyone come up with an equivalent of 'show channels'
using the extant manager commands?  If so, could you post how you did it?



Thanks!

-MC

___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users






--
Com os melhores cumprimentos,

Marco Mouta
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Asterisk Manager: equivalent of 'show channels'?

2006-11-18 Thread Nico Busch

As far as I know, you can do something like this, i.e. in PHP:
fputs($socket, Action: Command\r\n);
fputs($socket, Command: show channels concise\r\n);

I hope that helps, but perhaps there is a better possibility.

NB


Michael Collins schrieb:


I’m interested in knowing if anyone else has worked around this issue:

I have an application that needs to check the status of the calls 
going through Asterisk about every 5 seconds or so. I don’t want to do 
“asterisk –rx ‘show channels verbose’” at the Linux command line 12 
times per minute so I am looking at the AMI. I see that there isn’t a 
manager command for ‘show channels.’ Has anyone come up with an 
equivalent of ‘show channels’ using the extant manager commands? If 
so, could you post how you did it?


Thanks!

-MC



___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
  


___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Asterisk Manager: equivalent of 'show channels'?

2006-11-18 Thread Earl Terwilliger
On Saturday 18 November 2006 13:28, Michael Collins wrote:
 I'm interested in knowing if anyone else has worked around this issue:



 I have an application that needs to check the status of the calls going
 through Asterisk about every 5 seconds or so.  I don't want to do
 asterisk -rx 'show channels verbose' at the Linux command line 12
 times per minute so I am looking at the AMI.  I see that there isn't a
 manager command for 'show channels.'  Has anyone come up with an
 equivalent of 'show channels' using the extant manager commands?  If so,
 could you post how you did it?



 Thanks!

 -MC

An approach i take with my event monitor is to have a manager application 
register for all events, then when something in asterisk happens you get an  
event record. No need to 'poll' to check. Then you can easily determine what 
is going on. 

http://micpc.com/eventmonitor uses the event records to display the state of 
phones, channels, etc. 'realtime' with AJAX without polling.


earl


___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Asterisk Manager: equivalent of 'show channels'?

2006-11-18 Thread Richard Lyman

Michael Collins wrote:


I’m interested in knowing if anyone else has worked around this issue:

I have an application that needs to check the status of the calls 
going through Asterisk about every 5 seconds or so. I don’t want to do 
“asterisk –rx ‘show channels verbose’” at the Linux command line 12 
times per minute so I am looking at the AMI. I see that there isn’t a 
manager command for ‘show channels.’ Has anyone come up with an 
equivalent of ‘show channels’ using the extant manager commands? If 
so, could you post how you did it?


Thanks!

-MC


you need to look again
maybe read, http://www.dynx.net/ASTERISK/DOCS/RTF/MANAGER.RTF

action: command
command: show channels

Response: Follows
Privilege: Command
Channel Location State Application(Data)
0 active channels
0 active calls
--END COMMAND--


goodluck

___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [asterisk-users] Asterisk Manager: equivalent of 'show channels'?

2006-11-18 Thread Michael Collins
 you need to look again
 maybe read, http://www.dynx.net/ASTERISK/DOCS/RTF/MANAGER.RTF

Mea culpa!

I did not realize it was so easy!  I totally missed the command action
when looking over the docs.  Thanks for pointing out the mistake and
thanks too for the link.  It has helped a lot.

-MC
___
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users