Jeremy Kenney
2004-Oct-05 18:34 UTC
[Asterisk-Users] Custom Monitoring Directories per queues
I am using asterisk queues to monitor call conversations I would like to know if there is a way to make specific monitoring directories per queue. So that the call recordings are sorted out. Please let me know if someone else has tried this and if it works -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20041005/2f1f8e39/attachment.htm
Robert Jackson
2004-Oct-06 05:23 UTC
[Asterisk-Users] Custom Monitoring Directories per queues
-----Original Message----- From: Jeremy Kenney [mailto:jeremy@ds-tech.com] Sent: Tuesday, October 05, 2004 9:35 PM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Custom Monitoring Directories per queues>I am using asterisk queues to monitor call conversations I would >like to know if there is a way to make specific monitoring >directories per queue. So that the call recordings are sorted out.>Please let me know if someone else has tried this and if it worksWe do something like this. The easiest way is to use SetVar just before you queue the call. Then just specify the subdirectory and filename. So ours looks something like this: exten => admin_q,1,SetVar(MONITOR_FILENAME=admin_q/${UNIQUEID}) exten => admin_q,2,Queue(admin_q|t) exten => patient_q,1,SetVar(MONITOR_FILENAME=patient_q/${UNIQUEID}) exten => patient_q,2,Queue(patient_q|t) Hope this helps, Robert Jackson