Hey team, running into a weird issue and hoping someone can point me in the right direction.
My agent sessions eventually show up in the Sessions tab of the Cloud dashboard, but there’s about a 40-minute delay between when the call ends and when it appears. Is this expected? I thought sessions were supposed to show up pretty quickly after the call wraps.
Some context on my setup:
- Running locally via
uv run python src/agent.py dev
livekit-agents 1.5.2, rtc-version 1.1.5, Python 3.13 on macOS
Using the newer AgentServer + @server.rtc_session() pattern
- Worker registered against project (
cpi-agents (dev))
Everything looks healthy during the call itself — STT, LLM, TTS, tool calls all fire normally, and right after the session ends my logs show:
DEBUG livekit.agents uploading session report to LiveKit Cloud
DEBUG livekit.agents finished uploading
So from the agent’s side the upload seems to complete within a second or two of the call ending. But the session doesn’t actually surface in the dashboard until ~40 minutes later.
Is there a known processing/ingest delay on the Cloud side, or is something likely misconfigured on my end?
Thanks!