Author Topic: Stats on concurrent calls  (Read 2984 times)

zefrench

  • Newbie
  • *
  • Posts: 9
  • Karma: 0
    • View Profile
Stats on concurrent calls
« on: May 09, 2008, 03:10:10 »
Is there any method to find out how many concurent call wher over a period of time in an inbound queue?  I am trying to find out how many calls we get in peak times to improve staffing

QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: Stats on concurrent calls
« Reply #1 on: May 09, 2008, 09:15:36 »
My suggestion to do that empirically is to look at the number of lost calls with 15-minute definition, match that to the staffing levels, and see what-where it is going wrong.

zefrench

  • Newbie
  • *
  • Posts: 9
  • Karma: 0
    • View Profile
Re: Stats on concurrent calls
« Reply #2 on: May 09, 2008, 15:01:15 »
Umm this is not what we want to do.  We want to staff based on calls, not hire more staff or less staff and hope we have enough staff.

Any idea what sort of raw SQL query I would have to do to get this query?

QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: Stats on concurrent calls
« Reply #3 on: May 10, 2008, 09:07:32 »
This is not simple to do: it requires a state machine to track how many calls are open at any given moment in time. I think you should do this on a second-.per-second basis, so using SQL grouping functions won't help.

If you can come up with a simpler idea of how to implement that, we are going to implement it as well :)