package models type MemoryStats struct { Total uint64 `json:"total"` Used uint64 `json:"used"` Available uint64 `json:"available"` Cached uint64 `json:"cached"` Buffers uint64 `json:"buffers"` SwapTotal uint64 `json:"swapTotal"` SwapUsed uint64 `json:"swapUsed"` SwapFree uint64 `json:"swapFree"` }