Files
livekit/pkg/telemetry/prometheus/node_nonlinux.go
David Colburn faa870de3d Move callbacks out of messageRouter (#269)
* move callbacks out of messageRouter

* OCD

* more OCD

* fix forwarder test

* even more OCD

* maximum OCD

* package name collision, copy lock by value
2021-12-17 13:19:23 -08:00

11 lines
180 B
Go

//go:build !linux
// +build !linux
package prometheus
import "github.com/livekit/protocol/livekit"
func updateCurrentNodeSystemStats(_ *livekit.NodeStats) error {
return nil
}