博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
10 分钟实现一个自己的server监控器
阅读量:6050 次
发布时间:2019-06-20

本文共 3127 字,大约阅读时间需要 10 分钟。

需求

近期须要给自己的server加入监控器。目的是监控server的内存、CPU、磁盘占用率,资源占用率过高的话能给自己发个提醒。当前主流的平台通常会提供邮件、短息、甚至会提供微信提醒,只是这类提醒包括的噪音太多了(夹杂着各种无关的社交信息),我仅仅是单纯的须要接收到server的预警。由于server环境并不复杂,所以不考虑主流的与监控平台(毕竟搭建起来还是挺复杂的)。

选择产品

有非常多产品支持 incoming(就是通过调用应用提供的 API 把我们自己定义的消息转发送该应用)。我打算使用 ,由于它提供了 Android、和 iOS client支持并且是开源的所以后期有什么需求都能够自己加上去(另一点最基本的是使用起来非常easy。API 文档仅仅有一个接口。基本没有学习成本)。

着手操作

依照 来,首先新建一个自己定义集成,获得一个 Webhook url

http://jbox.jiguang.cn/v1/message/dxwYTMfrC8GRhU5/vwlrqCegmp  //注意:这里填写自己集成的 Webhook url,每一个集成的 Webhook 都不一样。

首先编写我们的监控脚本,这里我写了两个脚本

#内存监控脚本  monitor_memory.shwebhook="http://jbox.jiguang.cn:80/v1/message/dxwYTMfrC8GRhU5/vwlrqCegmp" #注意:这里填写自己集成的 Webhook url#告警阈值30G。少于则告警,频率 30分钟 检查一次 normal=30#取得总内存  #取得内存分页数  freemk=`vmstat 5 2 | tail -n 1 | awk '{print $5}'`;   #每一页是4K ,所以乘以4                              freemm=`expr $freemk \* 4`;     #转换为 G                                                          freemem=`echo $freemm/1024/1024|bc`;                                          echo `date +%Y%m%d%H%M`"  Memory:" "M" all $freemem"G" avail;if [ $freemem -lt $normal ]then    echo "当前内存"$freemem"G,少于"$normal"G"        #打印告警信息    这里能够插入短信库。发送至手机    title="内存告警!!

"

message="当前内存"$freemem"G,少于"$normal"G" memoryAlertJson='{"title":"'${title}'"'',"message":"'${message}'"}' echo $memoryAlertJson # 这里发送预警。该条消息会转发到 JBOx app curl -H "Content-Type: application/json" -X POST -d $memoryAlertJson $webhook fi
# 磁盘监控脚本 monitor_disk.shwebhook="http://jbox.jiguang.cn:80/v1/message/dxwYTMfrC8GRhU5/vwlrqCegmp"normal=10 #当超过 10% 这个值时产生告警,这里由于測试 所以设得非常低,这个能够依据自己的需求来添加DiskPercent=`df |grep -w / |awk '{print $5}'|awk -F '%' '{print $1}'`;echo $DiskPercent;if [ $normal -lt $DiskPercent ]     then    echo "硬盘 使用率告警"    title="硬盘 使用率告警!!"    message="当前使用率"$DiskPercent"%,大于"$normal"%"    DiskAlertJson='{"title":"'${title}'"'',"message":"'${message}'"}'    echo $DiskAlertJson# 这里发送预警,该条消息会转发到 JBOx app    curl -H "Content-Type: application/json" -X POST -d $DiskAlertJson $webhookfi

我把这两个脚本加在 crontab 运行计划里面

$ crontab -e

# Edit this file to introduce tasks to be run by cron.# # Each task to run has to be defined through a single line# indicating with different fields when the task will be run# and what command to run for the task# # To define the time you can provide concrete values for# minute (m), hour (h), day of month (dom), month (mon),# and day of week (dow) or use '*' in these fields (for 'any').# # Notice that tasks will be started based on the cron's system# daemon's notion of time and timezones.# # Output of the crontab jobs (including errors) is sent through# email to the user the crontab file belongs to (unless redirected).# # For example, you can run a backup of all your user accounts# at 5 a.m every week with:# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/# # For more information see the manual pages of crontab(5) and cron(8)# # m h  dom mon dow   command# 一分钟运行一次脚本* * * * * /bin/bash /home/ubuntu/monitor_memory.sh >>/home/ubuntu/moniter_memory.log* * * * * /bin/bash /home/ubuntu/monitor_disk.sh >>/home/ubuntu/monitor_disk.log


作者:HuminiOS - 极光

原文:

知乎专栏:

转载于:https://www.cnblogs.com/yutingliuyl/p/7327660.html

你可能感兴趣的文章
达达-高性能服务端优化之路
查看>>
HTTP报文
查看>>
Java基础String处理
查看>>
基于腾讯Angel的LDA*入选VLDB,超越微软LightLDA
查看>>
Java8特性——Lambda表达式
查看>>
尊重开源,且用且珍惜
查看>>
spring boot 发布
查看>>
JS日期格式化转换方法
查看>>
【案例学习】美国大都会人寿保险公司的 Docker EE 实践
查看>>
Spring Bean Scopes作用域
查看>>
分布式经济与数据隐私
查看>>
docker kafka安装
查看>>
Spring-Data-Jpa的使用(2)--多数据源配置
查看>>
Javascript模块化编程(二):AMD规范
查看>>
eclipse插件安装失败的列表如何清除-一个困扰很久的问题
查看>>
CAD的坐标输入方式有哪些
查看>>
在思维导图中浏览网页
查看>>
linux安装RPM包
查看>>
19 个 JavaScript 常用的简写技术
查看>>
javascript中call与apply的区别
查看>>