zabbix_监控_端口

目的:监控web主机80端口是否在供提服务。如果不在发出报警。
配置:
    1、添加监控项(Items)。
        打开zabbix web管理界面:选择"Configuration"->"Items"->"Create Item"

点击"Create Item"按钮出现下图

只要填写"description"和"key"两个字段就可以了。在这里"description"为"web01.matrix 80",设置"key"点击"Select"按钮弹出下图。

选择"net.tcp.port[<ip>,port]",然后修改为web01的ip地址端口为80。"net.tcp.port[192.168.0.2,80]"如图

保存
   2、添加触发器(Triggers)
选择"Configuration"->"Triggers"->"Create Triggers"

点击"Create Triggers"按钮出现下图 在"Name"字段写个名字,这里我写的名字是"web matrix 80 is down"。

点击"Insert"弹出下图

点击"Select"弹出下图

选择刚才添加的item "web01.matrix 80"如图
最终配置如下:

保存

来自为知笔记(Wiz)

时间: 2024-10-07 01:12:20

zabbix_监控_端口的相关文章

zabbix_监控_进程

一.根据进程名称监控 1.创建Item(只能通过进程名.用户过滤进程) http://www.2cto.com/os/201405/302249.html http://www.ithao123.cn/content-10355419.html 2.创建trigger(选择1步中创建的Item) 来自为知笔记(Wiz)

实时监控某个端口

通过nc命令实时监控某个端口 #/bin/bashwhile [ 1 ]donc -v -z api.weixin.qq.com 443 >> /tmp/api.weixin.qq.com.status.logsleep 1sdone

在服务器本地监控服务端口命令之ss

在服务器本地监控服务端口命令之ss 当服务器的socket连接数量变得非常大时,无论是使用netstat命令还是直接cat /proc/net/tcp,执行速度都会很慢.可能你不会有 切身的感受,但当服务器维持的连接达到上万个的时候,使用netstat等于浪费 生命,而用ss才是节省时间.天 下武功唯快不破.ss快的秘诀在于,它利用到了TCP协议栈中tcp_diag.tcp_diag是一个用于分析统计的模块,可以获得Linux 内核中 第一手的信息,这就确保了ss的快捷高效.当然,如果你的系统中

Zabbix监控(七):手动监控windows端口状态

1.监控端口的几个主要Keys: net.tcp.listen[port] Checks if this port is in LISTEN state. 0 - it is not, 1 - it is in LISTEN state. 监控TCP端口是否监听 net.tcp.port[<ip>,port] Check, if it is possible to make TCP connection to the port number. 0 - cannot connect, 1 - c

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

一 zabbix自定义监控实现思路 我在前面有写到: zabbix3.x服务端安装和配置 zabbix3.x客户端安装和配置 zabbix监控memcached 实际上我们要想使用zabbix来监控一些服务的原理很简单,步骤分别是: 写一个脚本用于获取待监控服务的一些状态信息 在zabbix客户端的配置文件zabbix_agentd.conf中添加上自定义的"UserParameter",目的是方便zabbix调用我们上面写的那个脚本去获取待监控服务的信息 在zabbix服务端使用za

zabbix系列(三):设置邮件报警,并测试监控80端口;

相关环境: 操作系统 描述 IP地址 server05 (centos6.6) 服务器端 192.168.10.65 server04 (centos6.6) 客户端 192.168.10.64 一.使用zabbix邮件报警功能 1.安装sendmail [[email protected]~]# service postfix stop   #linux默认使用postfix邮件服务,先关闭postfix,ss –tnl查看25端口关闭监听 [[email protected]~]#yum i

nagios监控redis端口、监控url接口告警脚本

监控redis端口如下: #!/bin/sh #Created by hys 20140823 declare -a master_ismaster_is=($(redis-cli -h 192.168.0.76 -p 7711 INFO |grep role |awk -F: '{print $2}'))echo $master_isif [ ${master_is} == "master" ];then        echo "OK -slave is running&

Zabbix系列之五——监控TCP端口

监控端口的几个主要Keys: net.tcp.listen[port] Checks if this port is in LISTEN state. 0 - it is not, 1 - it is in LISTEN state. 监控TCP端口是否监听 net.tcp.port[<ip>,port] Check, if it is possible to make TCP connection to the port number. 0 - cannot connect, 1 - can

Zabbix监控(十二):自动监控Linux端口

1.客户端新建脚本 [[email protected] ~]# vi /usr/local/zabbix_agent/sbin/discovertcpport.sh  #!/bin/bash portarray=(`netstat -tnlp|egrep -i "$1"|awk {'print $4'}|awk -F':' '{if ($NF~/^[0-9]*$/) print $NF}'|sort|uniq`) #namearray=(`netstat -tnlp|egrep -i