From 14f186879f01118e4d273fc88917f4c92b2b7174 Mon Sep 17 00:00:00 2001 From: Denys Smirnov Date: Tue, 13 Jan 2026 11:17:13 +0200 Subject: [PATCH] Fix call ID tracing attr. --- livekit/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livekit/types.go b/livekit/types.go index 6f0330a2..4b35b3ee 100644 --- a/livekit/types.go +++ b/livekit/types.go @@ -45,7 +45,7 @@ const ( TraceKeySIPPrefix = TraceKeyPref + "sip." TraceKeySIPHeaderPrefix = TraceKeySIPPrefix + "h." - TraceKeySIPCallID = attribute.Key(TraceKeySIPPrefix + "callID") + TraceKeySIPCallID = attribute.Key(TraceKeySIPPrefix + "call.id") TraceKeySIPCallIDHeader = attribute.Key(TraceKeySIPHeaderPrefix + "CallID") )