手机版
你好,游客 登录 注册
背景:
阅读新闻

Zabbix监控Nginx性能状态

[日期:2017-02-06] 来源:Linux社区  作者:liqingbiao [字体: ]

Nginx在生产环境中的应用越来越广泛,所以需要对Nginx的性能状态做一些监控来发现出来出现的问题。zabbix监控Nginx,首先确认Nginx的监控指标,主要有:基本活动指标,错误指标,性能指标。

Nginx处理流程图具体如下:

注释:Accepts(接受)、Handled(已处理)、Requests(请求数)是一直在增加的计数器。Active(活跃)、Waiting(等待)、Reading(读)、Writing(写)随着请求量而增减

名称

描述

指标类型

Accepts(接受)

NGINX 所接受的客户端连接数

资源: 功能

Handled(已处理)

成功的客户端连接数

资源: 功能

Active(活跃)

当前活跃的客户端连接数

资源: 功能

Dropped(已丢弃,计算得出)

丢弃的连接数(接受 - 已处理)

工作:错误*

Requests(请求数)

客户端请求数

工作:吞吐量

NGINX worker 进程接受 OS 的连接请求时 Accepts 计数器增加,而Handled 是当实际的请求得到连接时(通过建立一个新的连接或重新使用一个空闲的)。这两个计数器的值通常都是相同的,如果它们有差别则表明连接被Dropped, 往往这是由于资源限制,比如已经达到 NGINX 的worker_connections的限制。

Zabbix监控Nginx性能状态相关文件可以到Linux公社资源站下载:

------------------------------------------分割线------------------------------------------

免费下载地址在 http://linux.linuxidc.com/

用户名与密码都是www.linuxidc.com

具体下载目录在 /2017年资料/2月/6日/Zabbix监控Nginx性能状态/

下载方法见 http://www.linuxidc.com/Linux/2013-07/87684.htm

------------------------------------------分割线------------------------------------------

首先nginx需要配置nginx_status  具体步骤是:在 zabbix agentd客户端上,查看nginx是否加载了with-http_stub_status_module。因为 zabbix 监控nginx是根据nginx的Stub Status模块,抓取Status模块所提供的数据。假如以前没开启,现在想启用StubStatus 模块,在编译nginx 的时候要加上参数with-http_stub_status_module,执行./configure && make就可以了,不用make install,一般情况下都是安装的,具体的安装配置如下

(一)配置nginx

1,查看nginx_status是否开启,查看已开启。

[root@iZ237lzm354Z scripts]# /usr/local/nginx/sbin/nginx -V

nginx version: nginx/1.4.7

built by gcc 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC)

TLS SNI support enabled

configure arguments: --with-http_stub_status_module --with-http_ssl_module --with-pcre

--with-http_realip_module --with-http_image_filter_module

[root@iZ237lzm354Z scripts]#


2,nginx_status开启的步骤:

[root@iZ237lzm354Z scripts]# vim /usr/local/nginx/conf/nginx.conf

 server {

                        listen      80 ;

                        server_name  www.linuxidc.com;

          rewrite ^/invitejoin/(.*)\.htm[l]?$  /register.shtml?$1 last;

                index index.jsp index.html;

                root /opt/home;

            location = /nginx-status {

                              stub_status on;

                              access_log  off;

                              allow 127.0.0.1;

                              allow 10.253.12.34;

                            ####zabbix服务器端的IP地址一般为内网IP

                              }


3,测试并启动nginx

[root@iZ237lzm354Z scripts]# /usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

[root@iZ237lzm354Z scripts]# /usr/local/nginx/sbin/nginx -s reload

4,用curl来进行测试:

[root@iZ237lzm354Z scripts]# curl www.linuxidc.com/nginx-status

Active connections: 979

server accepts handled requests

 756072922 756072922 1136799890

Reading: 0 Writing: 4 Waiting: 975


备注:

Active connections –当前活跃的连接数量 
server accepts handled requests — 总共处理了756072922个连接 , 成功创建 756072922次握手, 总共处理了1136799890个请求
reading — 读取客户端的连接数.
writing — 响应数据到客户端的数量
waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接。

一些Zabbix相关教程集合

CentOS 7.2 安装部署 Zabbix 3.0.4 详解  http://www.linuxidc.com/Linux/2016-11/137671.htm

Ubuntu 14.04下Zabbix2.4.5 源码编译安装  http://www.linuxidc.com/Linux/2015-05/117657.htm

CentOS 6.8下Zabbix Server 安装部署详细步骤 http://www.linuxidc.com/Linux/2016-12/138908.htm

Zabbix基本配置及监控主机 http://www.linuxidc.com/Linux/2016-12/138504.htm

CentOS 7.0 x64下Zabbix 3.0 安装笔记  http://www.linuxidc.com/Linux/2016-11/137044.htm

CentOS下Zabbix 3.0.4安装部署 http://www.linuxidc.com/Linux/2017-01/139087.htm

CentOS 7 LNMP环境搭建Zabbix3.0 http://www.linuxidc.com/Linux/2017-02/140134.htm

64位CentOS 6.2下安装Zabbix 2.0.6   http://www.linuxidc.com/Linux/2014-11/109541.htm

(二)配置zabbix_agentd

1,编写脚步来获取nginx的相关信息

[root@ittestserver1 opt]# vim /usr/local/zabbix/scripts/nginx-check_performance.sh

#!/bin/bash

##################################

# Zabbix monitoring script

#

# nginx:

# - anything available via nginx stub-status module

#

##################################

# Contact:

# vincent.viallet@gmail.com

# Zabbix requested parameter

ZBX_REQ_DATA="$1"

ZBX_REQ_DATA_URL="$2"

# Nginx defaults

NGINX_STATUS_DEFAULT_URL="www.linuxidc.com/nginx-status"    #(这里写网站的域名)

WGET_BIN="/usr/bin/wget"

#

# Error handling:

# - need to be displayable in Zabbix (avoid NOT_SUPPORTED)

# - items need to be of type "float" (allow negative + float)

#

ERROR_NO_ACCESS_FILE="-0.9900"

ERROR_NO_ACCESS="-0.9901"

ERROR_WRONG_PARAM="-0.9902"

ERROR_DATA="-0.9903" # either can not connect / bad host / bad port

# Handle host and port if non-default

if [ ! -z "$ZBX_REQ_DATA_URL" ]; then

 URL="$ZBX_REQ_DATA_URL"

else

 URL="$NGINX_STATUS_DEFAULT_URL"

fi

# save the nginx stats in a variable for future parsing

NGINX_STATS=$($WGET_BIN -q $URL -O - 2> /dev/null)

# error during retrieve

if [ $? -ne 0 -o -z "$NGINX_STATS" ]; then

 echo $ERROR_DATA

 exit 1

fi

#

# Extract data from nginx stats

#

case $ZBX_REQ_DATA in

 active_connections) echo "$NGINX_STATS" | head -1 | cut -f3 -d' ';;

 accepted_connections) echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f2 -d' ';;

 handled_connections) echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f3 -d' ';;

 handled_requests) echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f4 -d' ';;

 reading) echo "$NGINX_STATS" | tail -1 | cut -f2 -d' ';;

 writing) echo "$NGINX_STATS" | tail -1 | cut -f4 -d' ';;

 waiting) echo "$NGINX_STATS" | tail -1 | cut -f6 -d' ';;

 *) echo $ERROR_WRONG_PARAM; exit 1;;

esac

exit 0

[root@ittestserver1 opt]# chmod +x /usr/local/zabbix/scripts/nginx-check_performance.sh

-rw-r--r-x1 root root 1645 2月 4 14:26/usr/local/zabbix/scripts/nginx-check_performance.sh

2,配置zabbix_agentd.conf。启用UserParameter,并配置相关的参数。

[root@ittestserver1 opt]# vim /usr/local/zabbix/etc/zabbix_agentd.conf

####### USER-DEFINED MONITORED PARAMETERS #######

### Option: UnsafeUserParameters

#      Allow all characters to be passed in arguments to user-defined parameters.

#      The following characters are not allowed:

#      \ ' " ` * ? [ ] { } ~ $ ! & ; ( ) < > | # @

#      Additionally, newline characters are not allowed.

#      0 - do not allow

#      1 - allow

#

# Mandatory: no

# Range: 0-1

# Default:

# UnsafeUserParameters=0

UnsafeUserParameters=1

### Option: UserParameter

#      User-defined parameter to monitor. There can be several user-defined parameters.

#      Format: UserParameter=<key>,<shell command>

#      See 'zabbix_agentd' directory for examples.

#

# Mandatory: no

# Default:

# UserParameter=

UserParameter=nginx[*],/usr/local/zabbix/scripts/nginx-check_performance.sh "$1"

3,重启zabbix_agentd客户端

[root@zabbix ~]# /etc/init.d/zabbix_agentd restart

Shutting down zabbix_agentd:                              [  OK  ]

Starting zabbix_agentd:                                    [  OK  ]

[root@zabbix ~]#


4,在zabbix服务端(server)进行测试。

[root@zabbix ~]# zabbix_get -s 10.253.17.20 -p 10050 -k "nginx[reading]"

0

[root@zabbix ~]#

更多详情见请继续阅读下一页的精彩内容http://www.linuxidc.com/Linux/2017-02/140230p2.htm

linux
本文评论   查看全部评论 (2)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款
第 2 楼
* 匿名 发表于 2017/12/13 21:39:30
[root@zabbix nginx1.9.14]# /usr/local/nginx/**in/nginx -t
nginx: [emerg] unknown directive "erver" in /usr/local/product/nginx1.9.14/conf/extra/zabbix.conf:1
nginx: configuration file /usr/local/product/nginx1.9.14/conf/nginx.conf test failed
这个是什么错误?怎么解决?求指教谢谢!
第 1 楼
* 匿名 发表于 2017/12/13 21:25:49
[root@zabbix nginx1.9.14]# /usr/local/nginx/**in/nginx -t
nginx: [emerg] unknown directive "erver" in /usr/local/product/nginx1.9.14/conf/extra/zabbix.conf:1
nginx: configuration file /usr/local/product/nginx1.9.14/conf/nginx.conf test failed