Amazon Connect
How can we fetch Active IVR Call Count
at Amazon Connect Contact Flow
?
PS: Need to fetch IVR call count, not the queue in call count.
Tried to explore using Cloudwatch, but no API to fetch Concurrent call at IVR.
Amazon Connect
How can we fetch Active IVR Call Count
at Amazon Connect Contact Flow
?
PS: Need to fetch IVR call count, not the queue in call count.
Tried to explore using Cloudwatch, but no API to fetch Concurrent call at IVR.
3
Answers
Not possible without tracking it yourself. Maybe check the CloudWatch insights to see if there something there, but nothing comes to mind.
Bigger question is where do you identify when your "IVR" starts. Where ever your starting point is for you calls, set one or more attributes, and then use your Lambda invoke as a counter to report the data where you need it.
You won’t find such metric in the api, because Amazon connect counts “contacts”, not “calls”. So same call bounced between agents or having multiple agents in a conference will count more than once.
One possible solution is to listen to contact event stream and constantly updating a call count in a database. Roughly, count all inbound/outbound call events, and subtract all termination events.