mem.go 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package mem
  2. import (
  3. "encoding/json"
  4. "github.com/shirou/gopsutil/internal/common"
  5. )
  6. var invoke common.Invoker = common.Invoke{}
  7. // Memory usage statistics. Total, Available and Used contain numbers of bytes
  8. // for human consumption.
  9. //
  10. // The other fields in this struct contain kernel specific values.
  11. type VirtualMemoryStat struct {
  12. // Total amount of RAM on this system
  13. Total uint64 `json:"total"`
  14. // RAM available for programs to allocate
  15. //
  16. // This value is computed from the kernel specific values.
  17. Available uint64 `json:"available"`
  18. // RAM used by programs
  19. //
  20. // This value is computed from the kernel specific values.
  21. Used uint64 `json:"used"`
  22. // Percentage of RAM used by programs
  23. //
  24. // This value is computed from the kernel specific values.
  25. UsedPercent float64 `json:"usedPercent"`
  26. // This is the kernel's notion of free memory; RAM chips whose bits nobody
  27. // cares about the value of right now. For a human consumable number,
  28. // Available is what you really want.
  29. Free uint64 `json:"free"`
  30. // OS X / BSD specific numbers:
  31. // http://www.macyourself.com/2010/02/17/what-is-free-wired-active-and-inactive-system-memory-ram/
  32. Active uint64 `json:"active"`
  33. Inactive uint64 `json:"inactive"`
  34. Wired uint64 `json:"wired"`
  35. // Linux specific numbers
  36. // https://www.centos.org/docs/5/html/5.1/Deployment_Guide/s2-proc-meminfo.html
  37. // https://www.kernel.org/doc/Documentation/filesystems/proc.txt
  38. // https://www.kernel.org/doc/Documentation/vm/overcommit-accounting
  39. Buffers uint64 `json:"buffers"`
  40. Cached uint64 `json:"cached"`
  41. Writeback uint64 `json:"writeback"`
  42. Dirty uint64 `json:"dirty"`
  43. WritebackTmp uint64 `json:"writebacktmp"`
  44. Shared uint64 `json:"shared"`
  45. Slab uint64 `json:"slab"`
  46. PageTables uint64 `json:"pagetables"`
  47. SwapCached uint64 `json:"swapcached"`
  48. CommitLimit uint64 `json:"commitlimit"`
  49. CommittedAS uint64 `json:"committedas"`
  50. HighTotal uint64 `json:"hightotal"`
  51. HighFree uint64 `json:"highfree"`
  52. LowTotal uint64 `json:"lowtotal"`
  53. LowFree uint64 `json:"lowfree"`
  54. SwapTotal uint64 `json:"swaptotal"`
  55. SwapFree uint64 `json:"swapfree"`
  56. Mapped uint64 `json:"mapped"`
  57. VMallocTotal uint64 `json:"vmalloctotal"`
  58. VMallocUsed uint64 `json:"vmallocused"`
  59. VMallocChunk uint64 `json:"vmallocchunk"`
  60. HugePagesTotal uint64 `json:"hugepagestotal"`
  61. HugePagesFree uint64 `json:"hugepagesfree"`
  62. HugePageSize uint64 `json:"hugepagesize"`
  63. }
  64. type SwapMemoryStat struct {
  65. Total uint64 `json:"total"`
  66. Used uint64 `json:"used"`
  67. Free uint64 `json:"free"`
  68. UsedPercent float64 `json:"usedPercent"`
  69. Sin uint64 `json:"sin"`
  70. Sout uint64 `json:"sout"`
  71. }
  72. func (m VirtualMemoryStat) String() string {
  73. s, _ := json.Marshal(m)
  74. return string(s)
  75. }
  76. func (m SwapMemoryStat) String() string {
  77. s, _ := json.Marshal(m)
  78. return string(s)
  79. }