1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00

39 lines
918 B
Go
Raw Normal View History

2014-12-30 22:09:05 +09:00
package mem
2014-04-18 16:34:47 +09:00
import (
"encoding/json"
)
2014-04-30 15:32:05 +09:00
type VirtualMemoryStat struct {
2014-04-18 16:34:47 +09:00
Total uint64 `json:"total"`
Available uint64 `json:"available"`
Used uint64 `json:"used"`
UsedPercent float64 `json:"used_percent"`
2014-04-18 16:34:47 +09:00
Free uint64 `json:"free"`
Active uint64 `json:"active"`
Inactive uint64 `json:"inactive"`
Buffers uint64 `json:"buffers"`
Cached uint64 `json:"cached"`
Wired uint64 `json:"wired"`
Shared uint64 `json:"shared"`
}
2014-04-30 15:32:05 +09:00
type SwapMemoryStat struct {
2014-04-18 16:34:47 +09:00
Total uint64 `json:"total"`
Used uint64 `json:"used"`
Free uint64 `json:"free"`
UsedPercent float64 `json:"used_percent"`
2014-04-18 16:34:47 +09:00
Sin uint64 `json:"sin"`
Sout uint64 `json:"sout"`
}
func (m VirtualMemoryStat) String() string {
s, _ := json.Marshal(m)
return string(s)
}
func (m SwapMemoryStat) String() string {
s, _ := json.Marshal(m)
return string(s)
}