8 proc.mem 监控项中memtype参数类型的注意事项

概述

Linux, AIX, FreeBSD 和 Solaris 都支持memtype参数。

‘memtype’ 参数的三个常用值 pmem, rssvsize在所有系统中都适用。另外, 在一些系统中只支持该系统下的 ‘memtype’ 值。

AIX

请参阅表中 AIX 上“memtype”参数支持的值。

支持值说明procentry64结构中来源尽量兼容
vsize 1虚拟内存大小pi_size
pmem实际内存百分比pi_prmps -o pmem
rss常驻集大小pi_trss + pi_drssps -o rssize
size进程大小(代码 + 数据)pi_dvm“ps gvw”SIZE column
dsize数据大小pi_dsize
tsize文本(代码)大小pi_tsize“ps gvw” TSIZ column
sdsize共享库的数据大小pi_sdsize
drss数据常驻集大小pi_drss
trss文本常驻集大小pi_trss

Notes for AIX:

  1. When choosing parameters for proc.mem[] item key on AIX, try to specify narrow process selection criteria. Otherwise there is a risk of getting unwanted processes counted into proc.mem[] result.

Example:

  1. \$ zabbix_agentd -t proc.mem[,,,NonExistingProcess,rss]
  2. proc.mem[,,,NonExistingProcess,rss] [u|2879488]

This example shows how specifying only command line (regular expression to match) parameter results in Zabbix agent self-accounting - probably not what you want.

  1. Do not use “ps -ef” to browse processes - it shows only non-kernel processes. Use “ps -Af” to see all processes which will be seen by Zabbix agent.

  2. Let’s go through example of ‘topasrec’ how Zabbix agent proc.mem[] selects processes.

  1. \$ ps -Af | grep topasrec
  2. root 10747984 1 0 Mar 16 - 0:00 /usr/bin/topasrec -L -s 300 -R 1 -r 6 -o /var/perf daily/ -ypersistent=1 -O type=bin -ystart_time=04:08:54,Mar16,2023

proc.mem[] has arguments:

  1. proc.mem[<name>,<user>,<mode>,<cmdline>,<memtype>]

The 1st criterion is a process name (argument <name>). In our example Zabbix agent will see it as ‘topasrec’. In order to match, you need to either specify ‘topasrec’ or to leave it empty. The 2nd criterion is a user name (argument <user>). To match, you need to either specify ‘root’ or to leave it empty. The 3rd criterion used in process selection is an argument <cmdline>. Zabbix agent will see its value as ‘/usr/bin/topasrec -L -s 300 -R 1 -r 6 -o /var/perf/daily/ -ypersistent=1 -O type=bin -ystart_time=04:08:54,Mar16,2023’. To match, you need to either specify a regular expression which matches this string or to leave it empty.

Arguments <mode> and <memtype> are applied after using the three criteria mentioned above.

FreeBSD

请参见表中FreeBSD上的“memtype”参数支持的值。

支持的参数值描述proentry64 结构中的源代码兼容
vsize虚拟内存大小kp_eproc.e_vm.vm_map.size or ki_sizeps -o vsz
pmem实际内存的百分比calculated from rssps -o pmem
rss驻留内存大小kp_eproc.e_vm.vm_rssize or ki_rssizeps -o rss
size 1进程大小 (代码 + 数据 + 堆栈)tsize + dsize + ssize
tsize文本(代码)的大小kp_eproc.e_vm.vm_tsize or ki_tsizeps -o tsiz
dsize数据大小kp_eproc.e_vm.vm_dsize or ki_dsizeps -o dsiz
ssize堆栈大小kp_eproc.e_vm.vm_ssize or ki_ssizeps -o ssiz

Linux

请参见表中Linux上的“memtype”参数支持的值。

支持值描述来源/proc/<pid>/status 文件
vsize 1虚拟内存大小VmSize
pmem实际内存百分比(VmRSS/total_memory) * 100
rss驻留内存大小VmRSS
data数据段大小VmData
exe代码段大小VmExe
hwm驻留集峰值大小VmHWM
lck锁定内存大小VmLck
lib共享库的大小VmLib
peak峰值虚拟内存大小VmPeak
pin固定页面的大小VmPin
pte页表条目的大小VmPTE
size进程代码 + 数据 + 堆栈段的大小VmExe + VmData + VmStk
stk堆栈段大小VmStk
swap使用的交换空间大小VmSwap

Linux上注意事项:

  1. 一些旧版本Linux 内核并不是支持所有’memtype’ 值的。例如, Linux 内核版本2.4就不支持 hwm, pin, peak, pteswap 等值。
  2. 我们发现 Zabbix agent 主动检查进程参数proc.mem[...,...,...,...,data] 显示的值比agent 的 /proc/<pid>/status 文件中 VmData行的值大 4 kB。在agent自我监控管理时,agent的数据碎片增长率4 kB ,然后又返回到先前的值。

Solaris

请参见表中的Solaris上的“memtype”参数所支持的值。

支持值描述psinfo 结构中的源代码兼容
vsize 1过程映像的大小pr_sizeps -o vsz
pmem实际内存百分比pr_pctmemps -o pmem
rss驻留集大小
可能被低估了 - 请参阅“man ps”中的 rss 描述。
pr_rssizeps -o rss
注释批注

1 默认值