一.监控项:服务器进程数量
帮助
监控进程key
proc.num[<name>,<user>,<state>,<cmdline>] Number of processes. <name> and <user> same as in proc.mem item. <state> all (default), run, sleep, zomb. <cmdline> filter by command line (supports regex). Example: proc.num[apache2,www-data]. On Windows, only <name> and <user> are supported.proc_info[<process>,<attribute>,<type>]Different information about specific process(es)
总进程
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k proc.num
101
运行进程
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k proc.num[,,run]
1
睡眠进程
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k proc.num[,,sleep]
100
图示
总进程
运行进程数
睡眠进程
二.监控项:服务器CPU状态
帮助
监控CPU key
system.cpu.intr Device interrupts.
system.cpu.load[<cpu>,<mode>] CPU(s) load. Processor load. The cpu and mode are optional. If cpu is missing all is used. If mode is missing avg1 is used. Note that this is not percentage.
system.cpu.num Number of available proccessors.
system.cpu.switches Context switches.
system.cpu.util[<cpu>,<type>,<mode>] CPU(s) utilisation. Processor load in percents. The cpu, type and mode are optional. If cpu is missing all is used. If type is missing user is used. If mode is missing avg1 is used.
负载
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k system.cpu.load
0.000000
1分钟
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k system.cpu.load[all,avg1]
0.000000
5分钟负载
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k system.cpu.load[,avg5]
0.000000
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k system.cpu.load[,avg15]
0.000000
图示
1.五分钟
2. 1分钟
3. 15分钟
三.监控项:监控文件修改
帮助
监控文件
vfs.file.cksum[file]
vfs.file.md5sum[file]
vfs.file.size[file]
图示
md5校验
file size文件大小
四.监控项:磁盘IO情况
帮助
监控磁盘 I/O
vfs.dev.read[device,<type>,<mode>] Device read statistics.
vfs.dev.write[device,<type>,<mode>] Device write statistics.
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k vfs.dev.write[/dev/sda1]
1.200000
[root@rhel6 ~]# zabbix_get -s 192.168.152.131 -k vfs.dev.write[/dev/sda1]
1.200000
图示
五.监控项:磁盘总和
帮助
=========================Calculated==================================
计算表达式(Formula)
剩余磁盘百分比
100*last("vfs.fs.size[/,free]",0)/last("vfs.fs.size[/,total]",0)
eth0进出流量总和
last("net.if.in[eth0,bytes]",0)+last("net.if.out[eth0,bytes]",0)
计算磁盘总的剩余量
last("vfs.fs.size[/,free]",0)+last("vfs.fs.size[/var,free]",0)+last("vfs.fs.size[/usr,free]",0)+last("vfs.fs.size[/boot,free]",0)
last("vfs.fs.size[C:,free]",0)+last("vfs.fs.size[D:,free]",0)+last("vfs.fs.size[E:,free]",0)+last("vfs.fs.size[F:,free]",0)
图示
键值可以在官网手册上查到
六.Zabbix User parameters zabbix用户参数
Zabbix User parameters
即自定义KEY
注意:mysql安装在被监测主机
[root@localhost ~]# yum -y install mariadb-server mariadb
[root@localhost ~]# systemctl start mariadb
[root@localhost ~]# mysqladmin -uroot status | cut -f4 -d":" | cut -f1 -d"S"
mysqladmin -u root -proot -h localhost status
这条命令返回MYSQL当前状态的几个值
Uptime: 18869 Threads: 1 Questions: 1 Slow queries: 0 Opens: 33 Flush tables: 1 c: 0 Queries per second avg: 0.000
Uptime:是mysql正常运行的时间。
Threads:指开启的会话数吧。
Questions: 服务器启动以来客户的问题(查询)数目 (应该是只要跟mysql作交互:不管你查询表,还是查询服务器状态都问记一次)。
Slow queries:按字面意思是慢查询的意思,不知道musql认为多久才足够算为长查询,这个先放着。
Opens:服务器已经打开的数据库表的数量
Flush tables: 服务器已经执行的flush ...、refresh和reload命令的数量。
open tables:通过命令是用的数据库的表的数量,以服务器启动开始。
Queries per second avg:select语句平均查询时间?
在zabbix客户端主配置文件中,启动自定义参数
vim /etc/zabbix/zabbix_agentd.conf
Include=/etc/zabbix_agentd.userparams.conf
在zabbix客户端创建配置文件
vim /etc/zabbix_agentd.userparams.conf
UserParameter=mysql.questions,mysqladmin -uroot status | cut -f4 -d":" | cut -f1 -d"S"
systemctl restart zabbix-agent
[root@localhost ~]# zabbix_agentd -t mysql.questions
mysql.questions [t| 9]
总结
1.通过shell命令调取相应的值。
2.将shell命令,定义到/etc/zabbix/zabbix_agentd.d/*.conf