diff --git a/.changeset/popular-cats-pull.md b/.changeset/popular-cats-pull.md new file mode 100644 index 000000000..599511922 --- /dev/null +++ b/.changeset/popular-cats-pull.md @@ -0,0 +1,5 @@ +--- +"@livekit/protocol": patch +--- + +remove last cloud only obs method diff --git a/observability/reporter.go b/observability/reporter.go index 9bbbcff97..25e860e7f 100644 --- a/observability/reporter.go +++ b/observability/reporter.go @@ -26,7 +26,6 @@ type Reporter interface { Telephony() telephonyobs.Reporter Egress() egressobs.Reporter Ingress() ingressobs.Reporter - GatewayMetrics() any // any is a placeholder for the gateway metrics type TelephonyCall() telephonycallobs.Reporter Storage() storageobs.Reporter Close() @@ -66,10 +65,6 @@ func (reporter) Ingress() ingressobs.Reporter { return ingressobs.NewNoopReporter() } -func (reporter) GatewayMetrics() any { - return nil -} - func (reporter) TelephonyCall() telephonycallobs.Reporter { return telephonycallobs.NewNoopReporter() }