zabbix monitor mem

zabbix monitor mem

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[root@smallasa]# free
total used free shared buffers cached
Mem: 65922752 1178064 64744688 840 266968 330884
-/+ buffers/cache: 580212 65342540
Swap: 8191996 0 8191996

第1行:
total 内存总数(65922752)
used 已经使用的内存数(1178064)
free 空闲的内存数(64744688)
shared 多个进程共享的内存总额(840)
buffers 系统分配但未被使用的buffers数量(266968)
cached 系统分配但未被使用的cache数量(330884)

关系: total = used + free

第2行:
-/+ buffers/cache:
-buffers/cache 的内存数(580212) = (used - buffers - cached)
+buffers/cache 的内存数(65342540) = (free + buffers + cached)

"-buffers/cache"反映的是被程序实实在在吃掉的内存
"+buffers/cache"反映的是可以挪用的内存总数

第3行:
total Swap内存总数(8191996)
used Swap已经使用的内存数(0)
free Swap空闲内存数(8191996)