Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Monitoring Live Calls

Status
Not open for further replies.

telcodog

Technical User
Jan 1, 2007
1,443
CA
Anybody know what the command is to be able to watch a live call when testing outbound calling? Looking for something akin to what we can see using BCM Monitor

So far I have tail -f /var/log/ucx/ and that's about it. Is this correct so far or is there a different command string?
 
Update......I think the command string I'm looking is: tail -f /var/log/asterisk/full I believe I can add grep xxx at the end to monitor a specific extension.

If I'm wrong or missing something, please feel free to correct me.

Thanks.
 
You could use the Asterisk CLI directly instead of tailing the log file. To do that, you can use the following command from the admin account:
[pre]sudo asterisk -rvvv
[/pre]
Once in the CLI, you can issue Asterisk commands such as
[pre]core show channels
sip show peers
ucx show peers
ucx show registered
[/pre]and similar to see active calls, connected SIP phones/trunks, connected Nortel phones and so on.
 
On my 4.0 UCX50, running the command sudo asterisk -rvvv from a ssh session results in asterisk command not found.
Same results when the command is entered from the gui pbx-> tools -> asterisk cli
 
In that case, try
[pre]sudo /usr/sbin/asterisk -rvvv[/pre]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top