OGG维护优化脚本(二十四)-OGG状态监控系统--后台脚本
admin
2023-04-26 20:42:44
0

这个简易监控系统具体是由html实现的

后台没有数据库,只有从各台机器收集并上传过来的html文件

通过定时shell脚本整理并分类到各个目录,然后通过apache被网页调用

具体更新频率取决于各数据同步服务器的定时任务运行频率



OGG进程状态整理脚本

这个脚本用于整理进程信息上传脚本 收集到的文件,将其合并为html文件

pcsindex.sh

#!/bin/bash
cd /root/gg/ggscript/pcsindex
ls -lrt /root/gg/gginfo/*.gginfo|awk '{print $9}' > temp
sed '/^$/d' temp > tempc
cat tempc|sort -n > temp
rm -f tempc
echo "The data was collected by RenYi
 " > /var/www/virtual/index2.html echo "
" >> /var/www/virtual/index2.html echo "
" >> /var/www/virtual/index2.html i=1 num=`sed -n '$=' temp` cd /root/gg/gginfo while [ "$i" -le "$num" ] do         filename=`sed -n $i'p' /root/gg/ggscript/pcsindex/temp`         cat  $filename >> /var/www/virtual/index2.html        ((i++)); done



OGG 错误日志整理脚本

该脚本用于整理 错误日志上传脚本 收集到的错误日志信息

gglog.sh

#!/bin/bash
cd /root/gg/ggscript/gglog

ls -lrt /root/gg/gglog/*.gglog|awk '{print $9}' > /root/gg/ggscript/gglog/temp
sed '/^$/d' temp > tempc
cat tempc|sort -n > temp
rm -f tempc
i=1
num=`sed -n '$=' temp`
cd /root/gg/gglog
while [ "$i" -le "$num" ]
do
        filename=`sed -n $i'p' /root/gg/ggscript/gglog/temp`
        file=${filename%.*}
        file=${file##*/}
        cat  $filename > /var/www/virtual/gglog/$file.html
       ((i++));
done

lgglog.sh

#!/bin/bash
cd /root/gg/ggscript/gglog

ls -lrt /var/www/virtual/gglog/* |awk '{print $9}' > /root/gg/ggscript/gglog/temp2
sed '/^$/d' temp2 > tempc
cat tempc|sort -n > temp2
rm -f tempc
i=1
i=1
num=`sed -n '$=' temp2`
cd /var/www/virtual/gglog
while [ "$i" -le "$num" ]
do
        filename=`sed -n $i'p' /root/gg/ggscript/gglog/temp2`
        file=${filename%.*}
        file=${file##*/}
        cat  $filename > /var/www/virtual/lgglog/$file.html
       ((i++));
done




附加日志错误信息整理脚本

该脚本用于整理分类 附加日志错误信息收集脚本从不同机器收集来的附加日志信息,并发送到不同的目录

ggchk.sh

#!/bin/bash
cd /root/gg/ggscript/ggchk

ls -lrt /root/gg/ggtbchk/*.tbcheck|awk '{print $9}' > /root/gg/ggscript/ggchk/temp
sed '/^$/d' temp > tempc
cat tempc|sort -n > temp
rm -f tempc
i=1
num=`sed -n '$=' temp`
cd /root/gg/ggtbchk
while [ "$i" -le "$num" ]
do
        filename=`sed -n $i'p' /root/gg/ggscript/ggchk/temp`
        file=${filename%.*}
        file=${file##*/}
        cat  $filename > /var/www/virtual/ggchk/$file.html
       ((i++));
done




写入错误日志整理脚本

用于整理写入进程异常日志收集脚本 收集到的异常日志

ggdsc.sh

#!/bin/bash
cd /root/gg/ggscript/ggdsc

ls -lrt /root/gg/ggdcs/*.dcsinfo|awk '{print $9}' > /root/gg/ggscript/ggdsc/temp
sed '/^$/d' temp > tempc
cat tempc|sort -n > temp
rm -f tempc
i=1
num=`sed -n '$=' temp`
cd /root/gg/ggdcs
while [ "$i" -le "$num" ]
do
        filename=`sed -n $i'p' /root/gg/ggscript/ggdsc/temp`
        file=${filename%.*}
        file=${file##*/}
        cat  $filename > /var/www/virtual/ggdsc/$file.html
       ((i++));
done

错误数量统计脚本

用于统计各个系统日志中错误以及异常信息,生成页面上的ERROR 或者错误数量等数据

count.sh

#!/bin/bash

cd /root/gg/ggscript/ggcount

#gginfo
ls -lrt /var/www/virtual/gginfo/*.html|awk '{print $9}' > /root/gg/ggscript/ggcount/temp
sed '/^$/d' temp > tempc
cat tempc|sort -n > temp
rm -f tempc
i=1
num=`sed -n '$=' temp`
cd /root/gg/ggscript/ggcount

while [ "$i" -le "$num" ]
do
        filename=`sed -n $i'p' /root/gg/ggscript/ggcount/temp`
        file=${filename%.*}
        file=${file##*/}
        filename=${filename##*/}
        nux=`grep -oi "red" /var/www/virtual/gginfo/$filename |wc -l`


        if [ $nux -gt 0 ];then
                echo "ALERT" > /var/www/virtual/txt/gginfo/$file.html
        else
                echo "NORMAL" > /var/www/virtual/txt/gginfo/$file.html
        fi


       ((i++));
done




crontab 计划任务配置

#GGscript
*/7 * * * * sh/root/gg/ggscript/pcsindex/pcsindex.sh > /root/gg/ggscript/pcsindex.log
*/6 * * * * sh /root/gg/ggscript/gglog/gglog.sh
*/15 * * * * sh /root/gg/ggscript/ggdsc/ggdsc.sh
*/8 * * * * sh /root/gg/ggscript/gginfo/gginfo.sh
*/5 * * * * sh /root/gg/ggscript/ggcount/count.sh
1 0 1 * * sh /root/gg/ggscript/gglog/lgglog.sh
*/10 * * * * sh /root/gg/ggscript/ggchk/ggchk.sh


相关内容

热门资讯

美媒:中美元首会晤或讨论AI护... 据凤凰卫视援引美国媒体报道,美方希望借中美领导人会晤的机会,开启有关人工智能安全与管控的对话,并推动...
卫生间水管布置图尺寸高度 卫生间的水管布置可能比较复杂一些,因为卫生间的管道比较多。比如有热水器的通水管道,有座便器的冲水管道...
电脑尺寸在哪里看 电脑尺寸在哪里看1、可以选择手工测量法来测量电脑尺寸,这时测量一下屏幕对角线,因为显示面积都会小于显...
电脑机箱尺寸标准 常规的机箱一般是立体式,或桌面式,再就是横式。电脑机箱尺寸,目前市面上根据不同的规格有不同的方案。 ...
斯塔默发声:不会辞职 【环球时报驻英国特约记者 纪双城 环球时报特约记者 甄翔 于文】执政党工党在英国地方选举中遭遇“历史...
抽油烟机管道有异味怎么办 抽油烟机是厨房中不可或缺的设备,它能有效地排出油烟,保证室内空气的清新。但是,长时间使用后,抽油烟机...
抽油烟机管道有油垢怎么办 抽油烟机管道是我们家庭生活中必不可少的设备,但长时间的使用会导致管道内部积累大量的油垢,如不及时清理...
沈伯洋与台北市长格局有落差,叶... 海峡导报综合报道 民进党将正式拍板征召民代沈伯洋出战台北市长,并发布采访通知,预计在13日下午举行台...
核查:上世纪已有多款汉坦疫苗上... 明查员 冯梦速览- 人类感染汉坦病毒已有数十年历史。朝鲜战争期间,联合国军就曾有过大规模感染。汉坦病...
如何从“一证在手”走向“一技傍... 教员在给学员讲解理论知识。 学员在进行无人机试飞训...