diff --git a/observability/roomobs/gen_reporter.go b/observability/roomobs/gen_reporter.go index 8f96873aa..2c6f12ab8 100644 --- a/observability/roomobs/gen_reporter.go +++ b/observability/roomobs/gen_reporter.go @@ -6,7 +6,7 @@ import ( "time" ) -const Version_IRCV090 = true +const Version_P3B2THO = true type KeyResolver interface { Resolve(string) @@ -110,7 +110,8 @@ type participantSessionReporter interface { ReportKind(v string) ReportName(v string) ReportFeatures(v uint16) - ReportAttributes(v map[string]string) + ReportCallID(v string) + ReportIngressID(v string) } type ParticipantSessionTx interface { diff --git a/observability/roomobs/gen_reporter_noop.go b/observability/roomobs/gen_reporter_noop.go index 94ed0d14c..28e83cfb6 100644 --- a/observability/roomobs/gen_reporter_noop.go +++ b/observability/roomobs/gen_reporter_noop.go @@ -166,7 +166,8 @@ func (r *noopParticipantSessionReporter) ReportDurationMinutes(v uint8) func (r *noopParticipantSessionReporter) ReportKind(v string) {} func (r *noopParticipantSessionReporter) ReportName(v string) {} func (r *noopParticipantSessionReporter) ReportFeatures(v uint16) {} -func (r *noopParticipantSessionReporter) ReportAttributes(v map[string]string) {} +func (r *noopParticipantSessionReporter) ReportCallID(v string) {} +func (r *noopParticipantSessionReporter) ReportIngressID(v string) {} func (r *noopParticipantSessionReporter) WithTrack(id string) TrackReporter { return &noopTrackReporter{} } @@ -198,7 +199,8 @@ func (t *noopParticipantSessionTx) ReportDurationMinutes(v uint8) {} func (t *noopParticipantSessionTx) ReportKind(v string) {} func (t *noopParticipantSessionTx) ReportName(v string) {} func (t *noopParticipantSessionTx) ReportFeatures(v uint16) {} -func (t *noopParticipantSessionTx) ReportAttributes(v map[string]string) {} +func (t *noopParticipantSessionTx) ReportCallID(v string) {} +func (t *noopParticipantSessionTx) ReportIngressID(v string) {} type noopTrackReporter struct{}