Files
2026-09-11 06:14:38 +02:00

13 lines
221 B
Go

//go:build !linux && !darwin && !windows
package hoststats
import (
"context"
"fmt"
)
func readMemory(context.Context) (Memory, error) {
return Memory{}, fmt.Errorf("host memory telemetry unsupported on this OS")
}