按照zabbix客户端及自定义监控nginx连接状态

一、下载客户端按照包,这里用rpm包安装

[[email protected] ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-agent-3.0.4-1.el7.x86_64.rpm

修改客户端配置文件

Server=127.0.0.1
ServerActive=127.0.0.1

改为zabbix server实际的IP地址(比如zabbix server的IP地址为10.0.0.100)

Server=10.0.0.100
ServerActive=10.0.0.100

重启zabbix 客户端

[[email protected]]# systemctl restart zabbix-agent

二、自定义脚本监控nginx连接状态:

#!/bin/bash
HOST=localhost
PORT="9999"
function active {
        /usr/bin/curl "http://$HOST:$PORT/nginx-status/" 2>/dev/null| grep ‘Active‘ | awk ‘{print $NF}‘
        }
function reading {
        /usr/bin/curl "http://$HOST:$PORT/nginx-status/" 2>/dev/null| grep ‘Reading‘ | awk ‘{print $2}‘
       }
function writing {
        /usr/bin/curl "http://$HOST:$PORT/nginx-status/" 2>/dev/null| grep ‘Writing‘ | awk ‘{print $4}‘
       }
function waiting {
        /usr/bin/curl "http://$HOST:$PORT/nginx-status/" 2>/dev/null| grep ‘Waiting‘ | awk ‘{print $6}‘
       }
function accepts {
        /usr/bin/curl "http://$HOST:$PORT/nginx-status/" 2>/dev/null| awk NR==3 | awk ‘{print $1}‘
       }
function handled {
        /usr/bin/curl "http://$HOST:$PORT/nginx-status/" 2>/dev/null| awk NR==3 | awk ‘{print $2}‘
       }
function requests {
        /usr/bin/curl "http://$HOST:$PORT/nginx-status/" 2>/dev/null| awk NR==3 | awk ‘{print $3}‘
       }
$1

将脚本存放与脚本目录,注意该目录根据自己情况定义,我这里用rpm 按照zabbix-agent客户端,所以直接放在/etc/zabbix/script目录下

[[email protected] script]# ll nginx-status.sh 
-rwx------ 1 root root 947 Mar 22 10:49 nginx-status.sh
[[email protected] script]#

 不要忘了给脚本执行权限

[[email protected] script]# chmod +x nginx-status.sh 
[[email protected] script]#
[[email protected] script]# ll nginx-status.sh 
-rwxr-xr-x 1 root root 947 Mar 22 10:49 nginx-status.sh
[[email protected] script]#

修改配置文件,在末尾添加如下内容:

[[email protected] zabbix]# vim zabbix_agentd.conf 
...................................省略部分......................................................
### DISK I/O
UserParameter=custom.vfs.dev.read.ops[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$4}‘  
UserParameter=custom.vfs.dev.read.ms[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$7}‘  
UserParameter=custom.vfs.dev.write.ops[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$8}‘  
UserParameter=custom.vfs.dev.write.ms[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$11}‘  
UserParameter=custom.vfs.dev.io.active[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$12}‘  
UserParameter=custom.vfs.dev.io.ms[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$13}‘  
UserParameter=custom.vfs.dev.read.sectors[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$6}‘  
UserParameter=custom.vfs.dev.write.sectors[*],cat /proc/diskstats | grep $1 | head -1 | awk ‘{print $$10}‘
######## TCP connections total
UnsafeUserParameters=1
UserParameter=synrecv,/etc/zabbix/script/tcp_connection_status.sh SYNRECV
UserParameter=estab,/etc/zabbix/script/tcp_connection_status.sh ESTAB
UserParameter=timewait,/etc/zabbix/script/tcp_connection_status.sh TIMEWAIT
UserParameter=last_ack,/etc/zabbix/script/tcp_connection_status.sh LAST_ACK
UserParameter=total,/etc/zabbix/script/tcp_connection_status.sh TOTAL
#####Nginx Status
UserParameter=nginx.accepts,/etc/zabbix/script/nginx-status.sh accepts
UserParameter=nginx.handled,/etc/zabbix/script/nginx-status.sh handled
UserParameter=nginx.requests,/etc/zabbix/script/nginx-status.sh requests
UserParameter=nginx.connections.active,/etc/zabbix/script/nginx-status.sh active
UserParameter=nginx.connections.reading,/etc/zabbix/script/nginx-status.sh reading
UserParameter=nginx.connections.writing,/etc/zabbix/script/nginx-status.sh writing
UserParameter=nginx.connections.waiting,/etc/zabbix/script/nginx-status.sh waiting
EnableRemoteCommands=1

然后重启zabbix客户端

[[email protected]]# systemctl restart zabbix-agent 
[[email protected] zabbix]# systemctl status zabbix-agent 
● zabbix-agent.service - Zabbix Agent
   Loaded: loaded (/usr/lib/systemd/system/zabbix-agent.service; disabled; vendor preset: disabled)
   Active: active (running) since Wed 2017-03-22 11:03:05 CST; 6min ago
  Process: 13613 ExecStop=/bin/kill -SIGTERM $MAINPID (code=exited, status=0/SUCCESS)
  Process: 13615 ExecStart=/usr/sbin/zabbix_agentd -c $CONFFILE (code=exited, status=0/SUCCESS)
 Main PID: 13617 (zabbix_agentd)
   CGroup: /system.slice/zabbix-agent.service
           ├─13617 /usr/sbin/zabbix_agentd -c /etc/zabbix/zabbix_agentd.conf
           ├─13618 /usr/sbin/zabbix_agentd: collector [idle 1 sec]
           ├─13619 /usr/sbin/zabbix_agentd: listener #1 [waiting for connection]
           ├─13620 /usr/sbin/zabbix_agentd: listener #2 [waiting for connection]
           └─13621 /usr/sbin/zabbix_agentd: listener #3 [waiting for connection]
Mar 22 11:03:05 localhost systemd[1]: Starting Zabbix Agent...
Mar 22 11:03:05 localhost systemd[1]: PID file /run/zabbix/zabbix_agentd.pid not readable (yet?) after start.
Mar 22 11:03:05 localhost systemd[1]: Started Zabbix Agent.
[[email protected] zabbix]#

最后在服务端添加主机对应的监控项,键值为如下字段:

nginx.accepts
nginx.handled
nginx.requests
nginx.connections.active,
nginx.connections.reading
nginx.connections.writing
nginx.connections.waiting
时间: 2024-10-05 05:02:17

按照zabbix客户端及自定义监控nginx连接状态的相关文章

zabbix监控nginx连接状态

zabbix学习笔记:zabbix监控nginx连接状态 zabbix监控nginx zabbix可以监控nginx的状态,关于一个服务的状态可以查看服务本身的状态(版本号.是否开启),还应该关注服务能力(例如以nginx的负载效果:连接数.请求数和句柄数).下面我们使用zabbix监控nginx. nginx的安装 如果想要查看nginx的服务状态,在对nginx进行源码安装的时候要选中–with-http_stub_status_module模块. 1.解压安装包: [[email prot

zabbix监控nginx连接状态(转)

zabbix监控nginx zabbix可以监控nginx的状态,关于一个服务的状态可以查看服务本身的状态(版本号.是否开启),还应该关注服务能力(例如以nginx的负载效果:连接数.请求数和句柄数).下面我们使用zabbix监控nginx. nginx的安装 如果想要查看nginx的服务状态,在对nginx进行源码安装的时候要选中–with-http_stub_status_module模块. 1.解压安装包: [[email protected] mnt]# tar xvf nginx-1.

zabbix自定义监控mysql主从状态,并做邮件告警

 通过zabbix自定义监控mysql主从状态,并做邮件告警 分析: mysql主要是通过主从来提供安全性,一个完整的主从体系,就应该包括数据同步.开启二进制日志.全备.还有对Slave_IO_Running和Slave_SQL_Running两个线程的实时监测,并做告警,而zabbix监控软件就提供了很好的方法:对于zabbix这个监控软件,个人来说也是比较熟悉,现在的企业们都基本用的是zabbix软件来做系统的资源的监控,zabbix的强大不仅仅体现于,它自身自带的监控模板比较全面,而是通过

zabbix用户自定义key检测内存信息和监控nginx的状态页

用户自定义key: 位置:在zabbix agent端实现: zabbix_agent.conf UserParamenter 语法格式: UserParamenter=<key>,<command> 示例: ~]# vim /etc/zabbix/zabbix_agentd.conf UserParameter=memory.free,cat /proc/meminfo | awk '/^MemFree:/{print $2}' # 没有参数时,如果要使用$,正常使用即可,如果是

zabbix 通过status模块监控nginx

1.编辑nginx的配置文件,在server下添加如下内容: location /status {stub_status on;access_log off;allow 127.0.0.1;deny all;} 保存退出并重启nginx 2.创建监控nginx的脚本目录 mkdir /usr/local/zabbix/libexec 3.vim /usr/local/zabbix/libexec/nginx.sh && chmod +x /usr/local/zabbix/libexec/

zabbix监控nginx性能状态

nginx在生产环境中的应用越来越广泛,所以需要对nginx的性能状态做一些监控,来发现出来出现的问题.nginx处理流程图具体如下: 注释:Accepts(接受).Handled(已处理).Requests(请求数)是一直在增加的计数器.Active(活跃).Waiting(等待).Reading(读).Writing(写)随着请求量而增减 名称 描述 指标类型 Accepts(接受) NGINX 所接受的客户端连接数 资源: 功能 Handled(已处理) 成功的客户端连接数 资源: 功能

zabbix管理七之监控nginx性能

说明: 使用zabbix监控nginx,首先nginx需要配置ngx_status 在编译安装nginx时需要使用--with-http_stub_status_module参数 在nginx的配置文件nginx.conf里添加如下:         location /nginx_status {              stub_status on;              access_log off;              allow 127.0.0.1;            

基于zabbix的Mysql自定义监控

Mysql自定义监控 需求:公司需要做mysql的数据监控,对mysql的状态,流量进行监控. 分析:zabbix自动就有Template App MySQL模版,我们只要添加mysql监控脚本就可以实现自定义监控. 配置如下: zabbix的服务端搭建,这里不再演示,我这里的zabbixserver已经配置好的了,直接进入mysql监控构建. 1.建立mysql host groups组 mysql模板是 zabbix系统提供的,进入 zabbix web 后台,配置-->主机群组-->点击

Zabbix使用Pycurl模块监控web页面状态

由于网络的问题,zabbix自带web模块用不了,后台研发2b,老是更新正式环境安装包,导致一直出问题,老是给他们擦屁股,早说过这事,他们不配合,现在出问题了,挺爽,这锅我表示不背,就找了pycurl这个模块写个监控. 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 c = pycurl.Curl()    #创建一个curl对象  c.setopt(pycurl.CONNECTTIMEOUT, 5)