Linux服务监控自动巡检脚本--推送钉钉告警

1. 编写服务监控自动巡检脚本

root@localhost \~\]# cat /opt/port_monitor_alarm_by_dingding.sh ```bash #!/bin/bash # 定义需要监控服务对应的端口列表 port_list="3308 1242 35690 65500 10410" # 定义接收通知的钉钉机器人的 Webhook URL webhook_url="https://oapi.dingtalk.com/robot/send?access_token=888888888888888888888888888888888888888888888888" #自定义主机名称或IP auto_hostname="8.8.8.8" # 获取本机IP地址输出本机的ip地址 local_ip=$(hostname -I | awk '{print $1}') # 遍历所有端口并检查其连接状态 port_monitor() { for port in $port_list; do # if ! nc -z localhost $port; then if ! netstat -antulp | grep $port;then # 如果发现不正常连接,通过钉钉机器人发送通知消息 curl -H "Content-Type: application/json" \ -d '{ "msgtype": "text", "text": { "content": "【重要告警】服务器【'"$auto_hostname"'】服务监控: Port 【'"$port"'】is not active on '"$local_ip"' at '"$(date +"%Y-%m-%d %H:%M:%S")"'" } }' $webhook_url fi done } port_monitor ``` #### 2. 配置计划任务 \[root@localhost \~\]# cat /etc/crontab ```bash */1 * * * * root /bin/bash /opt/port_monitor_by_dingding.sh >/dev/null 2>&1 ```

相关推荐
Languorous.11 小时前
Linux 登录用户、主机名、提示符详解(新手不迷路)
linux·数据库·postgresql
Bert.Cai12 小时前
Linux printf命令详解
linux·运维·服务器
闫记康12 小时前
Linux学习day4
linux·运维·学习
bush413 小时前
linux开发板连接virtualbox虚拟机ubuntu的usb网卡,访问外网方法。
linux·运维·ubuntu
小明同学0113 小时前
C++后端项目:统一大模型接入 SDK(一)
linux·c++·chatgpt
码农编程录13 小时前
【notes10】spi
linux
米高梅狮子14 小时前
03.OpenStack使用
linux·前端·云原生·容器·架构·kubernetes·openstack
实心儿儿14 小时前
Linux —— Linux进程信号 - 信号产生
linux·运维·服务器
楼兰公子14 小时前
RK3588 + Linux 7.0.3 内核网络子系统高阶进阶全解
linux·网络
海天鹰14 小时前
Linux系统4399云游戏无法进入
linux·游戏