Files
livekit/pkg/telemetry/prometheus/node_nonlinux.go
David Zhao 956735ae05 Fix node stats updates on Windows (#1748)
Because we aren't able to get CPU count/load info on Windows, they are
stubbed out to return placeholders. This restores compatibility to run
on Windows.
2023-05-29 10:53:08 -07:00

9 lines
119 B
Go

//go:build !linux
package prometheus
func getTCStats() (packets, drops uint32, err error) {
// linux only
return
}