//go:build !linux package metrics import ( "os" "runtime" ) // GetStaticInfo returns placeholder system info on non-Linux platforms. func GetStaticInfo() StaticSystemInfo { hostname, _ := os.Hostname() return StaticSystemInfo{ Hostname: hostname, OS: runtime.GOOS, Architecture: runtime.GOARCH, CPUCores: runtime.NumCPU(), } }