zabbix监控应用连接数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zabbix监控应用连接数相关的知识,希望对你有一定的参考价值。

zabbix使用用户自定义键值来监控应用系统连接数:

1、修改配置文件zabbix_agentd.conf

格式: UserParameter=<key>,<shell command>

加入一行:UserParameter=connections,netstat -n| grep 12345| wc –l

[[email protected] etc]$ pwd                  
/home/rusky/zabbix/etc
[[email protected] etc]$ ls
zabbix_agent.conf  zabbix_agent.conf.d  zabbix_agentd.conf  zabbix_agentd.conf.d
[[email protected] etc]$ vi zabbix_agentd.conf

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

### Option: UnsafeUserParameters
#       Allow all characters to be passed in arguments to user-defined parameters.
#       0 - do not allow
#       1 - allow
#
# Mandatory: no
# Range: 0-1
# Default:
# UnsafeUserParameters=0
### 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=connections,netstat -n| grep 12345| wc -l 

2、Web界面添加监控项

技术分享

Name值自己定义,Key值为我们配置文件里的key值Connections,其它参数可默认。

技术分享

修改完后,点Add添加即可。





以上是关于zabbix监控应用连接数的主要内容,如果未能解决你的问题,请参考以下文章

使用zabbix监控nginx的活动连接数

zabbix-自定义监控项(监控网站80连接数)

zabbix监控nginx连接数

zabbix监控nginx连接数

Zabbix监控Oracle 连接数

zabbix自定义监控实现思路以及自定义监控某个端口的连接数