mirror of
https://github.com/livekit/livekit.git
synced 2026-04-01 19:35:43 +00:00
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.
9 lines
119 B
Go
9 lines
119 B
Go
//go:build !linux
|
|
|
|
package prometheus
|
|
|
|
func getTCStats() (packets, drops uint32, err error) {
|
|
// linux only
|
|
return
|
|
}
|