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

From Kolmisoft Wiki
Jump to navigationJump to search
 
(3 intermediate revisions by one other user 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 verbose'"
watch "asterisk -vvvvvrx 'core show channels verbose'"
 


===Watch active channels in Asterisk 1.8===
===Watch active channels in Asterisk 1.8===


watch "asterisk -vvvvvrx 'core show channels verbose'"
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'"