Skip to content
DocsStart free

Live Supervisor Wallboard

The wallboard is a real-time, big-screen view of the contact center for supervisors: rolling KPI gauges, a tile per queue, and a live grid of every agent. It pairs the durable reporting metrics with the PresenceDO’s live state so the numbers move the instant something happens.

The wallboard runs on the realtime service (realtime.sip.io). Two complementary feeds drive it:

  • /wallboard/ws: a WebSocket carrying the live snapshot, pushed on every agent/queue state change. This drives the queue tiles and agent grid in real time.
  • /wallboard/data: the rolling KPIs plus the current snapshot, polled every 15 seconds to refresh the gauges.

/wallboard itself serves the rendered HTML page that connects to both.

KPI gauges (account-wide, color-coded by threshold):

GaugeSource
Occupancy %mean agent occupancy
Service level %service level, weighted by offered
ASAaverage speed of answer, weighted by offered
AHTaverage handle time, weighted by answered
Abandon %abandon rate, weighted by offered

Queue tiles: one per queue, from the live snapshot, showing waiting callers, longest current wait, plus the queue’s service level and abandon rate. A tile turns red when the longest wait exceeds 120s or service level drops below 60%.

Agent grid: one cell per agent showing their live status bucket (ready, incall, ring, wrapup, paused, idle, extcall, offline, unreachable), color-coded, with a wrap-up countdown when an agent is in wrap. A legend tallies how many agents are in each bucket.

Because the grid and tiles are fed by the same delta stream as every other live consumer, they reflect reality with no polling lag.

/wallboard/data uses the standard API auth with the wallboard scope. Browsers can’t set headers on a WebSocket handshake, so the socket is authed with a short-lived single-use ticket: a scoped POST /wallboard/ticket mints a ticket, and the client connects to /wallboard/ws?ticket=… (the ticket is burned on use).