2021-09-01 09:45:42 +00:00
|
|
|
//go:build linux
|
2014-03-28 19:18:01 +00:00
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package stats
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
2018-10-16 05:25:28 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
2014-03-28 19:18:01 +00:00
|
|
|
)
|
|
|
|
|
2018-10-16 05:25:28 +00:00
|
|
|
func fillInMemStatus(mem *volume_server_pb.MemStatus) {
|
2014-03-28 19:18:01 +00:00
|
|
|
//system memory usage
|
|
|
|
sysInfo := new(syscall.Sysinfo_t)
|
|
|
|
err := syscall.Sysinfo(sysInfo)
|
|
|
|
if err == nil {
|
|
|
|
mem.All = uint64(sysInfo.Totalram) //* uint64(syscall.Getpagesize())
|
|
|
|
mem.Free = uint64(sysInfo.Freeram) //* uint64(syscall.Getpagesize())
|
|
|
|
mem.Used = mem.All - mem.Free
|
|
|
|
}
|
|
|
|
}
|