2020-06-14 15:58:35 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/hamburghammer/gstat/args"
|
|
|
|
"github.com/shirou/gopsutil/mem"
|
|
|
|
)
|
|
|
|
|
2020-11-09 21:27:18 +01:00
|
|
|
// 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 {
|
2020-06-29 14:02:06 +02:00
|
|
|
ReadVirtualMemoryStat func() (*mem.VirtualMemoryStat, error)
|
2020-06-14 15:58:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewMem is a constructor for the Mem struct
|
|
|
|
func NewMem() Mem {
|
2020-06-29 14:02:06 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-06-29 14:02:06 +02:00
|
|
|
mem, err := m.ReadVirtualMemoryStat()
|
2020-06-14 15:58:35 +02:00
|
|
|
if err != nil {
|
|
|
|
return []byte{}, err
|
|
|
|
}
|
|
|
|
|
2020-11-09 21:27:18 +01:00
|
|
|
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
|
|
|
|
}
|