zabbix入门到精通之Zabbix对linux主机的监控
我们大概了解了怎么对台主机进行监控,主要步骤设计到添加主机,并且为主机添加监控项,这里主要为item,然后在item的基础上对item进行绘图并且通过screen的方式把不同的监控图像汇总到一张screen上。通过对quick章节我们认识到item监控项在zabbix中是非常重要的,而item的监控是通过key来定义的,key又分为系统预定义好的key和自定义的key组成,这一节,我们通过对zabbix预定义的内存key来了解一下key到底是怎么组成和怎么使用的。
Key
|
参数
|
类型
|
单位
|
举例
|
vm.memory.size[<mode>]
|
total (default), active,anon,
buffers, cached, exec, file, free, inactive
pinned, shared, wired, used, pused, available, pavailable
|
Numeric (unsigned)
Decimal
|
B
|
vm.memory.size[total]
vm.memory.size[total]
vm.memory.size[total]
vm.memory.size[total]
|
system.swap.in[<device>,<type>]
|
Type:count,sectors pages
|
Numeric (unsigned)
Decimal
|
B
|
system.swap.in[,pages]
|
system.swap.out[<device>,<type>]
|
Type:count,sectors pages
|
Numeric (unsigned)
Decimal
|
B
|
system.swap.out[,pages]
|
通过图表和截图我们可以很方便的看出来相关的对应关系。截图中的key:vm.memory.size[total] 中的对应图表中的key vm.memory.size[<mode>]而中括号中的mode这对应图表中的参数,这里为total,当然了大家也可以根据需要填写,比如监控内存以及使用的大小,这可以写成vm.memory.size[used] 。截图中的单位对应图表中的单位B,等等对应关系很容易看出来,这里就不多说了。然后大家按照quick章节中的实例为item绘图然后加入到screen里就可以了。
Key
|
参数
|
类型
|
单位
|
举例
|
net.if.in[if,<mode>]
|
Bytes,packets errors,dropped
|
Numeric (unsigned)
Decimal
|
Bps
|
net.if.in[eth0,errors] net.if.in[eth0]
|
net.if.out[if,<mode>]
|
Bytes,packets errors,dropped
|
Numeric (unsigned)
Decimal
|
Bps
|
net.if.out[eth0,errors] net.if.out[eth0]
|
net.if.total[if,<mode>]
|
Bytes,packets errors,dropped
|
Numeric (unsigned)
Decimal
|
Bps
|
net.if.total[eth0,errors] net.if.total[eth0]
|
Key
|
参数
|
类型
|
单位
|
举例
|
system.cpu.load[<cpu>,<mode>]
|
Cpu:all ,percpu
Avg1,avg5,avg15
|
Numeric (float)
|
无
|
system.cpu.load[,avg5]
|
system.cpu.num[<type>]
|
Online,max
|
Numeric (unsigned)
Decimal
|
无
|
system.cpu.num
|
system.cpu.switches
|
无
|
Numeric (float)
|
无
|
system.cpu.switches
|
system.cpu.util[<cpu>,<type>,<mode>]
|
Cpu:all,number
Type:idle, nice, user,iowait,interrupt, softirq, steal
Mode:avg1,av5,avg15
|
Numeric (float)
|
%
|
system.cpu.util[0,user,avg5]
|
Key
|
参数
|
类型
|
单位
|
举例
|
vfs.fs.size[fs,<mode>]
|
fs:文件系统
mode:total(默认)
free,used,pfree,pused
|
Numeric (unsigned)
Decimal
|
B
%
|
vfs.fs.size[/tmp,free]
|
vfs.file.size[file]
|
文件路径
|
Numeric (unsigned)
Decimal
|
B
|
vfs.file.size[/var/log/syslog]
|
选择change后添加想要加入的graph,下图为添加内存图形(3.1中创建)到screen中,选中后双击保存按钮就行保存
输入创建模板的名字和所在的组,然后保存即可。这时大家会发现多了一个名为test_linux但是里面的数据位空的
http://nanwangting.blog.51cto.com/608135/1118799