2014-12-30 22:09:05 +09:00
|
|
|
package mem
|
2014-04-18 16:34:47 +09:00
|
|
|
|
2014-05-01 18:43:11 +09:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
2016-05-20 17:59:41 +09:00
|
|
|
|
2021-11-06 09:53:56 +00:00
|
|
|
"github.com/shirou/gopsutil/v3/internal/common"
|
2014-05-01 18:43:11 +09:00
|
|
|
)
|
|
|
|
|
2018-03-21 14:08:39 +00:00
|
|
|
var invoke common.Invoker = common.Invoke{}
|
2016-05-20 17:59:41 +09:00
|
|
|
|
2016-02-17 07:09:11 +01:00
|
|
|
// Memory usage statistics. Total, Available and Used contain numbers of bytes
|
|
|
|
// for human consumption.
|
|
|
|
//
|
|
|
|
// The other fields in this struct contain kernel specific values.
|
2014-04-30 15:32:05 +09:00
|
|
|
type VirtualMemoryStat struct {
|
2016-02-17 07:09:11 +01:00
|
|
|
// Total amount of RAM on this system
|
|
|
|
Total uint64 `json:"total"`
|
|
|
|
|
|
|
|
// RAM available for programs to allocate
|
|
|
|
//
|
|
|
|
// This value is computed from the kernel specific values.
|
|
|
|
Available uint64 `json:"available"`
|
|
|
|
|
|
|
|
// RAM used by programs
|
|
|
|
//
|
|
|
|
// This value is computed from the kernel specific values.
|
|
|
|
Used uint64 `json:"used"`
|
|
|
|
|
|
|
|
// Percentage of RAM used by programs
|
|
|
|
//
|
|
|
|
// This value is computed from the kernel specific values.
|
2016-03-23 10:52:46 +09:00
|
|
|
UsedPercent float64 `json:"usedPercent"`
|
2016-02-17 07:09:11 +01:00
|
|
|
|
|
|
|
// This is the kernel's notion of free memory; RAM chips whose bits nobody
|
|
|
|
// cares about the value of right now. For a human consumable number,
|
|
|
|
// Available is what you really want.
|
|
|
|
Free uint64 `json:"free"`
|
|
|
|
|
|
|
|
// OS X / BSD specific numbers:
|
|
|
|
// http://www.macyourself.com/2010/02/17/what-is-free-wired-active-and-inactive-system-memory-ram/
|
|
|
|
Active uint64 `json:"active"`
|
|
|
|
Inactive uint64 `json:"inactive"`
|
|
|
|
Wired uint64 `json:"wired"`
|
|
|
|
|
2018-08-07 20:00:00 +09:00
|
|
|
// FreeBSD specific numbers:
|
|
|
|
// https://reviews.freebsd.org/D8467
|
2018-12-14 00:48:38 +09:00
|
|
|
Laundry uint64 `json:"laundry"`
|
2018-08-07 20:00:00 +09:00
|
|
|
|
2016-02-17 07:09:11 +01:00
|
|
|
// Linux specific numbers
|
|
|
|
// https://www.centos.org/docs/5/html/5.1/Deployment_Guide/s2-proc-meminfo.html
|
2016-08-16 05:13:14 -07:00
|
|
|
// https://www.kernel.org/doc/Documentation/filesystems/proc.txt
|
2018-03-28 10:57:05 +09:00
|
|
|
// https://www.kernel.org/doc/Documentation/vm/overcommit-accounting
|
2023-08-31 13:19:58 -04:00
|
|
|
// https://www.kernel.org/doc/Documentation/vm/transhuge.txt
|
2018-06-19 13:12:33 -07:00
|
|
|
Buffers uint64 `json:"buffers"`
|
|
|
|
Cached uint64 `json:"cached"`
|
2021-11-06 09:53:56 +00:00
|
|
|
WriteBack uint64 `json:"writeBack"`
|
2018-06-19 13:12:33 -07:00
|
|
|
Dirty uint64 `json:"dirty"`
|
2021-11-06 09:53:56 +00:00
|
|
|
WriteBackTmp uint64 `json:"writeBackTmp"`
|
2018-06-19 13:12:33 -07:00
|
|
|
Shared uint64 `json:"shared"`
|
|
|
|
Slab uint64 `json:"slab"`
|
2021-11-06 09:53:56 +00:00
|
|
|
Sreclaimable uint64 `json:"sreclaimable"`
|
|
|
|
Sunreclaim uint64 `json:"sunreclaim"`
|
|
|
|
PageTables uint64 `json:"pageTables"`
|
|
|
|
SwapCached uint64 `json:"swapCached"`
|
|
|
|
CommitLimit uint64 `json:"commitLimit"`
|
|
|
|
CommittedAS uint64 `json:"committedAS"`
|
|
|
|
HighTotal uint64 `json:"highTotal"`
|
|
|
|
HighFree uint64 `json:"highFree"`
|
|
|
|
LowTotal uint64 `json:"lowTotal"`
|
|
|
|
LowFree uint64 `json:"lowFree"`
|
|
|
|
SwapTotal uint64 `json:"swapTotal"`
|
|
|
|
SwapFree uint64 `json:"swapFree"`
|
2018-06-19 13:12:33 -07:00
|
|
|
Mapped uint64 `json:"mapped"`
|
2021-11-06 09:53:56 +00:00
|
|
|
VmallocTotal uint64 `json:"vmallocTotal"`
|
|
|
|
VmallocUsed uint64 `json:"vmallocUsed"`
|
|
|
|
VmallocChunk uint64 `json:"vmallocChunk"`
|
|
|
|
HugePagesTotal uint64 `json:"hugePagesTotal"`
|
|
|
|
HugePagesFree uint64 `json:"hugePagesFree"`
|
2022-03-19 15:18:11 +08:00
|
|
|
HugePagesRsvd uint64 `json:"hugePagesRsvd"`
|
|
|
|
HugePagesSurp uint64 `json:"hugePagesSurp"`
|
2021-11-06 09:53:56 +00:00
|
|
|
HugePageSize uint64 `json:"hugePageSize"`
|
2023-08-31 13:19:58 -04:00
|
|
|
AnonHugePages uint64 `json:"anonHugePages"`
|
2014-04-18 16:34:47 +09:00
|
|
|
}
|
|
|
|
|
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"`
|
2016-03-23 10:52:46 +09:00
|
|
|
UsedPercent float64 `json:"usedPercent"`
|
2014-04-18 16:34:47 +09:00
|
|
|
Sin uint64 `json:"sin"`
|
|
|
|
Sout uint64 `json:"sout"`
|
2021-11-06 09:53:56 +00:00
|
|
|
PgIn uint64 `json:"pgIn"`
|
|
|
|
PgOut uint64 `json:"pgOut"`
|
|
|
|
PgFault uint64 `json:"pgFault"`
|
2020-07-01 22:21:38 +10:00
|
|
|
|
|
|
|
// Linux specific numbers
|
|
|
|
// https://www.kernel.org/doc/Documentation/cgroup-v2.txt
|
2021-12-22 21:46:33 +00:00
|
|
|
PgMajFault uint64 `json:"pgMajFault"`
|
2014-04-18 16:34:47 +09:00
|
|
|
}
|
2014-05-01 18:43:11 +09:00
|
|
|
|
|
|
|
func (m VirtualMemoryStat) String() string {
|
|
|
|
s, _ := json.Marshal(m)
|
|
|
|
return string(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m SwapMemoryStat) String() string {
|
|
|
|
s, _ := json.Marshal(m)
|
|
|
|
return string(s)
|
|
|
|
}
|
2021-08-18 09:52:13 -04:00
|
|
|
|
|
|
|
type SwapDevice struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
UsedBytes uint64 `json:"usedBytes"`
|
|
|
|
FreeBytes uint64 `json:"freeBytes"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m SwapDevice) String() string {
|
|
|
|
s, _ := json.Marshal(m)
|
|
|
|
return string(s)
|
|
|
|
}
|