QueueMetrics > Running QueueMetrics
CallerID absed Queues / Stats
(1/1)
zefrench:
I have one General Queue defined in Asterisk, yet various customers of ours use that number to dial in.
I would like to have queuemetric present stats based on a customer, which in turn would be based a set range of callerids numbers.
For example, one customer of ours, has 8 different numbers their calls can show up on our callerid. ANother customer has 5.
Thus I would like to see: call info for customer1 or call info for customer2
Regards,
QueueMetrics:
The simplest thing to do is to use different queues for different customers, though you may have the same set of agents working on all queues at once. This will make the separation trivial.
The second simplest thing to do is:
- rewrite the caller-id of the incoming traffic to prepend a code that tells either the customer or the DID, like from "(555)5551234" to "01-(555)5551234", where 01 is the customer or the incoming DID
- use QM's Area analysis to break down calls based on the first two digits of the caller-id.
See also: http://queuemetrics.com/faq.jsp#faq-027-did_tracking
zefrench:
Woudl it be possible to show a quick dial plan example of how to prefix a callerid?
From example: if a call comes in under callerid (num) = 555-555-1212 rewrite it as 91-555-555-1212
Thanks again
QueueMetrics:
This should do the trick of adding "91" to your callerid:
--- Code: ---exten => ....
exten => _X.,1,Set(CALLERID(num)="91-${CALLERID(num)}")
exten => ....
--- End code ---
Navigation
[0] Message Index
Go to full version