码迷,mamicode.com
首页 > 其他好文 > 详细

zabbix监控应用连接数

时间:2016-02-02 18:53:15      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

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

1、修改配置文件zabbix_agentd.conf

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

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

[rusky@zabbix etc]$ pwd                  
/home/rusky/zabbix/etc
[rusky@zabbix etc]$ ls
zabbix_agent.conf  zabbix_agent.conf.d  zabbix_agentd.conf  zabbix_agentd.conf.d
[rusky@zabbix 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监控应用连接数

标签:

原文地址:http://www.cnblogs.com/rusking/p/5178172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!