Difference between revisions of "Watch active calls/channels in Asterisk server from CLI"

From Kolmisoft Wiki
Jump to navigationJump to search
(New page: ===Watch number of active channels=== watch "asterisk -vvvvvrx 'show channels' | grep channels" ===Watch number of active calls=== watch "asterisk -vvvvvrx 'show channels' | grep calls"...)
 
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<mkmeta>Commands to monitor active calls in the Asterisk CLI</mkmeta>
===Watch number of active channels===
===Watch number of active channels===


watch "asterisk -vvvvvrx 'show channels' | grep channels"
watch "asterisk -vvvvvrx 'core show channels' | grep channels"


===Watch number of active calls===
===Watch number of active calls===


watch "asterisk -vvvvvrx 'show channels' | grep calls"
watch "asterisk -vvvvvrx 'core show channels' | grep calls"


===Watch active channels===
===Watch active channels===


watch "asterisk -vvvvvrx 'show channels'"
watch "asterisk -vvvvvrx 'core show channels verbose'"
 
===Watch active channels in Asterisk 1.8===
 
watch "asterisk -vvvvvrx 'core show channels verbose'"

Latest revision as of 14:53, 3 April 2015

Watch number of active channels

watch "asterisk -vvvvvrx 'core show channels' | grep channels"

Watch number of active calls

watch "asterisk -vvvvvrx 'core show channels' | grep calls"

Watch active channels

watch "asterisk -vvvvvrx 'core show channels verbose'"

Watch active channels in Asterisk 1.8

watch "asterisk -vvvvvrx 'core show channels verbose'"