Monitor queued extensions with hint

I have the extension PJSIP/SIP1000 in sip utp and PJSIP/1000 in webrtc. For the user they are just a device.
I need to put these extensions in the queue and I did it this way.
AddQueueMember(sales,Local/1000@extensions,hint:1000@monitor)

[monitor]
exten => 7016,hint,PJSIP/1000&PJSIP/SIP1000

according to the asterisk documentation this should work.
I have tried several ways but I can’t get the status of the extensions.
either it is invalid or not in use even if it is not registered.

What does “dialplan show hints” show for it?

Hi, I managed to do it this way

queues.conf = member => Local/1000@extensions,hint:1000@monitor

extension.conf [monitor]
extension => 1000,hint,PJSIP/1000&PJSIP/SIP1000

it’s working, it reflects both the web rtc and sip udp status, avoiding sending calls to @extensions if the extension is unregistered or in use.
Thanks

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.