Zabbix监控Nginx、PHP和Memcached状态

创建zabbix_agentd的子配置文件

在/etc/zabbix/zabbix_agentd.d/中创建关联nginx status和php-fpm status的子配置文件,创建一个,或者在已有的某配置文件中增加也可以,我这里分别为它们创建配置文件,文件名可自定义,只要确保此文件夹全部内容在zabbix_agentd.conf中包含(include)了。

zabbix-agent配置文件的自定义key:

userparameter_nginx.conf
[root@spark ~]# cat /etc/zabbix/zabbix_agentd.d/userparameter_nginx.conf
#/usr/local/zabbix/bin/nginx_status.sh
#UserParameter=nginx.status[*],/etc/zabbix/scripts/nginx_status.sh $1
#这种写法比较简洁,参考zabbix 3.2.4中自带的的userparameter_examples.conf
UserParameter=nginx.version,/usr/sbin/nginx -v

#UserParameter=nginx.accepts,/etc/zabbix/scripts/check_nginx_status.sh accepts
#UserParameter=nginx.handled,/etc/zabbix/scripts/check_nginx_status.sh handled
#UserParameter=nginx.requests,/etc/zabbix/scripts/check_nginx_status.sh requests
#UserParameter=nginx.connections.active,/etc/zabbix/scripts/check_nginx_status.sh active
#UserParameter=nginx.connections.reading,/etc/zabbix/scripts/check_nginx_status.sh reading
#UserParameter=nginx.connections.writing,/etc/zabbix/scripts/check_nginx_status.sh writing
#UserParameter=nginx.connections.waiting,/etc/zabbix/scripts/check_nginx_status.sh waiting

userparameter_php-fpm.conf
[root@spark ~]# cat /etc/zabbix/zabbix_agentd.d/userparameter_php-fpm_status.conf
#UserParameter=idle.processe,/etc/zabbix/scripts/php-fpm_status.sh idle
#UserParameter=total.processes,/etc/zabbix/scripts/php-fpm_status.sh total
#UserParameter=active.processes,/etc/zabbix/scripts/php-fpm_status.sh active
#UserParameter=max.active.processes,/etc/zabbix/scripts/php-fpm_status.sh mactive
#UserParameter=listen.queue.len,/etc/zabbix/scripts/php-fpm_status.sh listenqueuelen
#UserParameter=listen.queue,/etc/zabbix/scripts/php-fpm_status.sh listenqueue
#UserParameter=start.since,/etc/zabbix/scripts/php-fpm_status.sh since
#UserParameter=accepted.conn,/etc/zabbix/scripts/php-fpm_status.sh conn
UserParameter=max.children.reached,/etc/zabbix/scripts/php-fpm_status.sh reached
UserParameter=slow.requests[],/etc/zabbix/scripts/php-fpm_status.sh requests
#/usr/local/zabbix/bin/php_fpm_status.sh
UserParameter=php-fpm.status[],/etc/zabbix/scripts/php-fpm_status.sh $1
UserParameter=php-fpm.version,/usr/local/php56/sbin/php-fpm -v | awk 'NR==1{print $0}'
#获取php-fpm版本信息

确认子配置文件被zabbix_agentd配置文件包含
确认在/usr/local/zabbix/etc/zabbix_agentd.conf中包含:Include=/usr/local/zabbix/etc/zabbix_agentd.conf.d/且没有被注释。

Zabbix监控Nginx、PHP和Memcached状态


zabbix服务端的get数值
[root@mha ~]# zabbix_get -s 192.168.198.131 -k 'nginx.status[ping]'
1

Zabbix监控Nginx、PHP和Memcached状态

zabbix页面:
nginx:
添加nginx status监控模板

新建nginx status模板

Zabbix监控Nginx、PHP和Memcached状态


定义nginx status模板

Zabbix监控Nginx、PHP和Memcached状态


新建nginxApplication

Zabbix监控Nginx、PHP和Memcached状态


定义nginx status items,这里我使用的是被动临控

增加nginx status状态码映射

Zabbix监控Nginx、PHP和Memcached状态


nginx trigger定义

Zabbix监控Nginx、PHP和Memcached状态


定义nginx监控视图

添加php-fpm status监控模板
php-fpm status的模板添加步骤和上述方法一样,此处不在赘述。

Zabbix监控Nginx、PHP和Memcached状态

Zabbix监控Nginx、PHP和Memcached状态

Zabbix监控Nginx、PHP和Memcached状态

Zabbix监控Nginx、PHP和Memcached状态

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/b987ac3646f5a26ed6cecbb83eeb1534.html