From f615b279377206d949734d378bf3b859c2a4e41c Mon Sep 17 00:00:00 2001 From: Paul Wells Date: Fri, 10 Apr 2026 11:11:14 -0700 Subject: [PATCH] add from/to to corecall schema --- observability/corecallobs/gen_reporter.go | 4 +++- observability/corecallobs/gen_reporter_noop.go | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/observability/corecallobs/gen_reporter.go b/observability/corecallobs/gen_reporter.go index d318c411f..4ee0abb94 100644 --- a/observability/corecallobs/gen_reporter.go +++ b/observability/corecallobs/gen_reporter.go @@ -6,7 +6,7 @@ import ( "time" ) -const Version_VMVUQTG = true +const Version_Q19KEN0 = true type KeyResolver interface { Resolve(string) @@ -36,6 +36,8 @@ type CallTx interface { ReportDurationMinutes(v uint16) ReportDirection(v CallDirection) ReportCallType(v CallCallType) + ReportFrom(v string) + ReportTo(v string) ReportRegion(v string) ReportRoomID(v string) ReportRoomName(v string) diff --git a/observability/corecallobs/gen_reporter_noop.go b/observability/corecallobs/gen_reporter_noop.go index 9b072fbd9..191a955ed 100644 --- a/observability/corecallobs/gen_reporter_noop.go +++ b/observability/corecallobs/gen_reporter_noop.go @@ -62,6 +62,8 @@ func (r *noopCallReporter) ReportDuration(v uint64) {} func (r *noopCallReporter) ReportDurationMinutes(v uint16) {} func (r *noopCallReporter) ReportDirection(v CallDirection) {} func (r *noopCallReporter) ReportCallType(v CallCallType) {} +func (r *noopCallReporter) ReportFrom(v string) {} +func (r *noopCallReporter) ReportTo(v string) {} func (r *noopCallReporter) ReportRegion(v string) {} func (r *noopCallReporter) ReportRoomID(v string) {} func (r *noopCallReporter) ReportRoomName(v string) {}