skip to Main Content

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


  1. Not possible without tracking it yourself. Maybe check the CloudWatch insights to see if there something there, but nothing comes to mind.

    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
  3. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search