gstat/commands/mem.go

49 lines
988 B
Go
Raw Permalink Normal View History

2020-06-14 15:58:35 +02:00
package commands
import (
"encoding/json"
"github.com/hamburghammer/gstat/args"
"github.com/shirou/gopsutil/mem"
)
// Memory usage representation.
type Memory struct {
Used uint64 `json:"used"`
Total uint64 `json:"total"`
}
2020-06-14 15:58:35 +02:00
// Mem holds the memory usage for the json transformation
type Mem struct {
ReadVirtualMemoryStat func() (*mem.VirtualMemoryStat, error)
2020-06-14 15:58:35 +02:00
}
// NewMem is a constructor for the Mem struct
func NewMem() Mem {
return Mem{mem.VirtualMemory}
2020-06-14 15:58:35 +02:00
}
// Exec gets the mem value and maps it to the executiondata struct
func (m Mem) Exec(args args.Arguments) ([]byte, error) {
if !args.Mem {
return []byte{}, nil
}
mem, err := m.ReadVirtualMemoryStat()
2020-06-14 15:58:35 +02:00
if err != nil {
return []byte{}, err
}
usage := Memory{Used: bytesToMegaByte(mem.Used), Total: bytesToMegaByte(mem.Total)}
data := struct {
Mem Memory `json:"mem"`
}{usage}
2020-06-14 15:58:35 +02:00
return json.Marshal(data)
}
func bytesToMegaByte(bytes uint64) uint64 {
kb := bytes / 1024
mb := kb / 1024
return mb
}