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) {}