//go:build !linux // Package cluster — non-Linux fallback: no /proc/net/dev, so network load is // reported as 0 (the ring's primary forward-count signal carries the load // decision; mem/net only break ties, and an unknown net load leaves the tie // break to memory). package cluster // SampleNetLoad returns 0 on platforms without /proc/net/dev sampling. func SampleNetLoad() float64 { return 0 }