piframe-go/vendor/github.com/mackerelio/go-osstat/memory/memory_other.go

19 lines
373 B
Go

// +build !linux,!darwin,!windows,!freebsd
package memory
import (
"fmt"
"runtime"
)
// Get memory statistics
func Get() (*Stats, error) {
return nil, fmt.Errorf("memory statistics not implemented for: %s", runtime.GOOS)
}
// Stats represents memory statistics
type Stats struct {
Total, Used, Cached, Free, Active, Inactive, SwapTotal, SwapUsed, SwapFree uint64
}