summaryrefslogtreecommitdiff
path: root/pkg/sysinfo/meminfo.go
blob: 7cdd996bfd138fa1cbe62b9a00e6bd500c32ec9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package sysinfo

// Memory contains memory statistics of the host system.
type Memory struct {
	// Total usable RAM (i.e. physical RAM minus a few reserved bits and the
	// kernel binary code).
	MemTotal int64

	// Amount of free memory.
	MemFree int64

	// Total amount of swap space available.
	SwapTotal int64

	// Amount of swap space that is currently unused.
	SwapFree int64
}