Linux服务器系统自动巡检脚本生成html报告

本文主要是介绍Linux服务器系统自动巡检脚本生成html报告,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、 前言

1、在上一篇文章里给大家介绍oracle自动巡检脚本生成html报告,这篇文章介绍linux服务巡检脚本生成html报告。
2、脚本依然是简单脚本语句的堆积,方便大家二次编辑使用。
3、项目已经上传到我的github上
项目地址:oswatch.git

二、注意事项与报告部分截图

一定注意阅读git上的README.md说明,避免部分信息无法正常显示
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

三、README.md

1、使用root用户执行
2、使用说明
1)、脚本中 ifconfig、mpstat、iostat命令有依赖,需要安装相关依赖包

yum -y install bc sysstat net-tools

2)、执行完巡检之后,将在脚本所在的路径下生成html巡检结果报告,如下
192.168.31.102os_linux_summary.html
3)、巡检项信息如下(其他统计项可根据实际需要自行添加)

1)、系统基本信息

2)、cpu信息

3)、ip网络信息

4)、cpu使用率

5)、连接数信息

6)、系统限制信息

7)、内存使用信息

8)、磁盘使用信息

9)、网络流量情况/系统资源变化

10)、cpu消耗情况前10排行

11)、cpu消耗按内存情况前10排行

12)、磁盘io情况

13)、系统定时任务列表

14)、系统定时任务脚本内容

四、脚本内容

#!/bin/bash
ipaddress=`ip a|grep "global"|awk '{print $2}' |awk -F/ '{print $1}'`
file_output=${ipaddress}'os_linux_summary.html'
td_str=''
th_str=''
#yum -y install bc sysstat net-tools
create_html_css(){echo -e "<html>
<head>
<style type="text/css">body        {font:12px Courier New,Helvetica,sansserif; color:black; background:White;}table,tr,td {font:12px Courier New,Helvetica,sansserif; color:Black; background:#FFFFCC; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;} th          {font:bold 12px Courier New,Helvetica,sansserif; color:White; background:#0033FF; padding:0px 0px 0px 0px;} h1          {font:bold 12pt Courier New,Helvetica,sansserif; color:Black; padding:0px 0px 0px 0px;} 
</style>
</head>
<body>"
}
create_html_head(){
echo -e "<h1>$1</h1>"
}
create_table_head1(){echo -e "<table width="68%" border="1" bordercolor="#000000" cellspacing="0px" style="border-collapse:collapse">"
}
create_table_head2(){echo -e "<table width="100%" border="1" bordercolor="#000000" cellspacing="0px" style="border-collapse:collapse">"
}
create_td(){td_str=`echo $1 | awk 'BEGIN{FS="|"}''{i=1; while(i<=NF) {print "<td>"$i"</td>";i++}}'`
}
create_th(){th_str=`echo $1|awk 'BEGIN{FS="|"}''{i=1; while(i<=NF) {print "<th>"$i"</th>";i++}}'`
}
create_tr1(){create_td "$1"echo -e "<tr>$td_str</tr>" >> $file_output
}
create_tr2(){create_th "$1"echo -e "<tr>$th_str</tr>" >> $file_output
}
create_tr3(){echo -e "<tr><td><pre style=\"font-family:Courier New; word-wrap: break-word; white-space: pre-wrap; white-space: -moz-pre-wrap\" >`cat $1`</pre></td></tr>" >> $file_output
}
create_table_end(){echo -e "</table>"
}
create_html_end(){echo -e "</body></html>"
}
NAME_VAL_LEN=12
name_val () {printf "%+*s | %s\n" "${NAME_VAL_LEN}" "$1" "$2"
}
get_physics(){name_val "巡检时间" "`date`"name_val "主机名" "`uname -n`"name_val "系统版本" "`cat /etc/{oracle,redhat,SuSE,centos}-release 2>/dev/null|sort -ru|head -n1`"name_val "内核版本" "`uname -r`"name_val "架构" "CPU=`lscpu|grep Architecture|awk -F: '{print $2}'|sed 's/^[[:space:]]*//g'`;OS=`getconf LONG_BIT`-bit"
}
get_cpuinfo () {file="/proc/cpuinfo"virtual=`grep -c ^processor "${file}"`physical=`grep 'physical id' "${file}" | sort -u | wc -l`cores=`grep 'cpu cores' "${file}" | head -n 1 | cut -d: -f2`model=`grep "model name" "${file}"|sort -u|awk -F: '{print $2}'`speed=`grep -i "cpu MHz" "${file}"|sort -u|awk -F: '{print $2}'`cache=`grep -i "cache size" "${file}"|sort -u|awk -F: '{print $2}'`SysCPUIdle=`vmstat | sed -n '$ p' | awk '{print $15}'`[ "${physical}" = "0" ] && physical="${virtual}"[ -z "${cores}" ] && cores=0cores=$((${cores} * ${physical}));htt=""if [ ${cores} -gt 0 -a $cores -lt $virtual ]; then htt=yes; else htt=no; finame_val "线程" "physical = ${physical}, cores = ${cores}, virtual = ${virtual}, hyperthreading = ${htt}"name_val "cpu型号" "${physical}*${model}"name_val "速度" "${virtual}*${speed}"name_val "缓存" "${virtual}*${cache}"name_val "CPU空闲率(%)" "${SysCPUIdle}%"
}
get_netinfo(){echo "interface | status | ipadds     |      mtu    |  Speed     |     Duplex" >>/tmp/tmpnet_h1_`date +%y%m%d`.txtfor ipstr in `ifconfig -a|grep ": flags"|awk  '{print $1}'|sed 's/.$//'`doipadds=`ifconfig ${ipstr}|grep -w inet|awk '{print $2}'`mtu=`ifconfig ${ipstr}|grep mtu|awk '{print $NF}'`speed=`ethtool ${ipstr}|grep Speed|awk -F: '{print $2}'`duplex=`ethtool ${ipstr}|grep Duplex|awk -F: '{print $2}'`echo "${ipstr}"  "up" "${ipadds}" "${mtu}" "${speed}" "${duplex}"\|awk '{print $1,"|", $2,"|", $3,"|", $4,"|", $5,"|", $6}'  >>/tmp/tmpnet1_`date +%y%m%d`.txtdone
}
get_cpuuse(){echo "#######################################  cpu使用率  #######################################" >>/tmp/tmp_cpuuse_`date +%y%m%d`.txtmpstat -P ALL 10 6 >>/tmp/tmp_cpuuse_`date +%y%m%d`.txt
}
get_connections (){filemax=`cat /proc/sys/fs/file-max`name_val "Number of concurrent connections" "${filemax}"
}
get_ulimitinfo(){echo "#######################################  系统限制最大进程数  #######################################" >>/tmp/tmp_ulimitinfo_`date +%y%m%d`.txtulimit -a >>/tmp/tmp_ulimitinfo_`date +%y%m%d`.txt
}
get_meminfo(){echo "Locator   |Size     |Speed       |Form Factor  | Type      |    Type Detail" >>/tmp/tmpmem3_h1_`date +%y%m%d`.txtdmidecode| grep -v "Memory Device Mapped Address"|grep -A12 -w "Memory Device" \|egrep "Locator:|Size:|Speed:|Form Factor:|Type:|Type Detail:" \|awk -F: '/Size|Type|Form.Factor|Type.Detail|^[\t ]+Locator/{printf("|%s", $2)}/^[\t ]+Speed/{print "|" $2}' \|grep -v "No Module Installed" \|awk -F"|" '{print $4,"|", $2,"|", $7,"|", $3,"|", $5,"|", $6}' >>/tmp/tmpmem3_t1_`date +%y%m%d`.txtfree -glht >>/tmp/tmpmem2_`date +%y%m%d`.txtmemtotal=`vmstat -s | head -1 | awk '{print $1}'`avm=`vmstat -s| sed -n '3p' | awk '{print $1}'`name_val "Mem_used_rate(%)" "`echo "100*${avm}/${memtotal}" | bc`%" >>/tmp/tmpmem1_`date +%y%m%d`.txt}
get_diskinfo(){echo "Filesystem        |Type   |Size |  Used  | Avail | Use%  | Mounted on | Opts" >>/tmp/tmpdisk_h1_`date +%y%m%d`.txtdf -ThP|grep -v tmpfs|sed '1d'|sort >/tmp/tmpdf1_`date +%y%m%d`.txtmount -l|awk '{print $1,$6}'|grep ^/|sort >/tmp/tmpdf2_`date +%y%m%d`.txtjoin /tmp/tmpdf1_`date +%y%m%d`.txt /tmp/tmpdf2_`date +%y%m%d`.txt\|awk '{print $1,"|", $2,"|", $3,"|", $4,"|", $5,"|", $6,"|", $7,"|", $8}' >>/tmp/tmpdisk_t1_`date +%y%m%d`.txt lsblk >>/tmp/tmpdisk1_`date +%y%m%d`.txt for disk in `ls -l /sys/block|awk '{print $9}'|sed '/^$/d'|grep -v fd`doecho "${disk}" `cat /sys/block/${disk}/queue/scheduler`  >>/tmp/tmpdisk2_`date +%y%m%d`.txt donepvs >>/tmp/tmpdisk3_`date +%y%m%d`.txtecho "======================  =====  =====  =====  =====  =====  ==========  =======" >>/tmp/tmpdisk3_`date +%y%m%d`.txtvgs >>/tmp/tmpdisk3_`date +%y%m%d`.txtecho "======================  =====  =====  =====  =====  =====  ==========  =======" >>/tmp/tmpdisk3_`date +%y%m%d`.txtlvs >>/tmp/tmpdisk3_`date +%y%m%d`.txt
}
get_topproc(){#os loadecho "#######################################  网络流量情况  #######################################" >>/tmp/tmpload_`date +%y%m%d`.txtsar -n DEV 10 6 >>/tmp/tmpload_`date +%y%m%d`.txtecho "#######################################  系统资源变化  #######################################" >>/tmp/tmpload_`date +%y%m%d`.txtvmstat -S M 10 6  >>/tmp/tmpload_`date +%y%m%d`.txt#top cpumpstat 1 5 >>/tmp/tmptopcpu_`date +%y%m%d`.txtecho "#######################################  消耗CPU前十排行  #######################################" >>/tmp/tmptopcpu_`date +%y%m%d`.txtps aux|head -1 >>/tmp/tmptopcpu_`date +%y%m%d`.txtps aux|grep -v PID|sort -rn -k +3|head  >>/tmp/tmptopcpu_`date +%y%m%d`.txt#top memecho "#######################################  消耗内存前十排行  #######################################" >>/tmp/tmptopmem_`date +%y%m%d`.txtps aux|head -1 >>/tmp/tmptopmem_`date +%y%m%d`.txtps aux|grep -v PID|sort -rn -k +4|head  >>/tmp/tmptopmem_`date +%y%m%d`.txtecho "TOP10 CPU Resource Process" >>/tmp/tmptopmem_`date +%y%m%d`.txttop -bn1 -o "%CPU"|sed  -n '1,17p' #top i/oecho "#######################################  磁盘io情况  #######################################" >>/tmp/tmptopio_`date +%y%m%d`.txtiostat -k -d 10 5  >>/tmp/tmptopio_`date +%y%m%d`.txt
}
get_crontablist(){crontab -l >>/tmp/tmp_crontab_`date +%y%m%d`.txtif [ -s /tmp/tmp_crontab_`date +%y%m%d`.txt ] ; then echo 'ths file is not empyt and file info'elseecho '#### 无定时任务 ####' >>/tmp/tmp_crontab_`date +%y%m%d`.txtfi
}
get_crontab_content(){crontab_content_log=/tmp/tmp_crontab_content_`date +%y%m%d`.txtcrontab -l|awk -F ' ' '{ print $NF}' >>$crontab_content_logcontrab_num=`crontab -l|awk -F ' ' '{ print $NF}'|wc -l`if [ $contrab_num -ne 0 ];thencount=1while [ $count -le $contrab_num ]doecho "#######################################  获取系统定时任务脚本 $count 内容开始  #######################################" >>/tmp/tmp_crontab_shellcontent_`date +%y%m%d`.txtcat `sed -n -e "${count}p" $crontab_content_log` >>/tmp/tmp_crontab_shellcontent_`date +%y%m%d`.txtecho -e "\n#######################################  获取系统定时任务脚本 $count 内容结束  #######################################\n" >>/tmp/tmp_crontab_shellcontent_`date +%y%m%d`.txtcount=$[${count}+1]doneelseecho '#### 无定时执行脚本 ####' >>/tmp/tmp_crontab_shellcontent_`date +%y%m%d`.txtfi
}
create_html(){rm -rf $file_outputtouch $file_outputcreate_html_css >> $file_outputcreate_html_head "系统基本信息" >> $file_outputcreate_table_head1 >> $file_outputget_physics >>/tmp/tmpos_summ_`date +%y%m%d`.txtwhile read linedocreate_tr1 "$line" done < /tmp/tmpos_summ_`date +%y%m%d`.txtcreate_table_end >> $file_outputcreate_html_head "cpu信息" >> $file_outputcreate_table_head1 >> $file_outputget_cpuinfo >>/tmp/tmp_cpuinfo_`date +%y%m%d`.txtwhile read linedocreate_tr1 "$line" done < /tmp/tmp_cpuinfo_`date +%y%m%d`.txt  create_table_end >> $file_outputcreate_html_head "ip网络信息" >> $file_outputcreate_table_head1 >> $file_outputget_netinfowhile read linedocreate_tr2 "$line" done < /tmp/tmpnet_h1_`date +%y%m%d`.txtwhile read linedocreate_tr1 "$line" done < /tmp/tmpnet1_`date +%y%m%d`.txtcreate_table_end >> $file_outputcreate_html_head "cpu使用率" >> $file_outputcreate_table_head1 >> $file_outputget_cpuusecreate_tr3 "/tmp/tmp_cpuuse_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_head "连接数信息" >> $file_outputcreate_table_head1 >> $file_outputget_connections >>/tmp/tmp_connections_`date +%y%m%d`.txtwhile read linedocreate_tr1 "$line" done < /tmp/tmp_connections_`date +%y%m%d`.txt  create_table_end >> $file_outputcreate_html_head "系统限制信息" >> $file_outputcreate_table_head1 >> $file_outputget_ulimitinfocreate_tr3 "/tmp/tmp_ulimitinfo_`date +%y%m%d`.txt"create_table_end >> $file_output  create_html_head "内存使用信息" >> $file_outputcreate_table_head1 >> $file_outputget_meminfowhile read linedocreate_tr1 "$line" done < /tmp/tmpmem1_`date +%y%m%d`.txtcreate_table_end >> $file_outputcreate_table_head1 >> $file_outputcreate_tr3 "/tmp/tmpmem2_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_table_head1 >> $file_outputwhile read linedocreate_tr2 "$line" done < /tmp/tmpmem3_h1_`date +%y%m%d`.txtwhile read linedocreate_tr1 "$line" done < /tmp/tmpmem3_t1_`date +%y%m%d`.txtcreate_table_end >> $file_outputcreate_html_head "磁盘使用信息" >> $file_outputcreate_table_head1 >> $file_outputget_diskinfowhile read linedocreate_tr2 "$line" done < /tmp/tmpdisk_h1_`date +%y%m%d`.txtwhile read linedocreate_tr1 "$line" done < /tmp/tmpdisk_t1_`date +%y%m%d`.txtcreate_table_end >> $file_outputcreate_table_head1 >> $file_outputcreate_tr3 "/tmp/tmpdisk1_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_table_head1 >> $file_outputcreate_tr3 "/tmp/tmpdisk2_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_table_head1 >> $file_outputcreate_tr3 "/tmp/tmpdisk3_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_head "网络流量情况" >> $file_outputcreate_table_head1 >> $file_outputget_topproccreate_tr3 "/tmp/tmpload_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_head "消耗CPU前十排行" >> $file_outputcreate_table_head1 >> $file_outputcreate_tr3 "/tmp/tmptopcpu_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_head "消耗内存前十排行" >> $file_outputcreate_table_head1 >> $file_outputcreate_tr3 "/tmp/tmptopmem_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_head "磁盘io情况" >> $file_outputcreate_table_head1 >> $file_outputcreate_tr3 "/tmp/tmptopio_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_head "定时任务信息" >> $file_outputcreate_table_head1 >> $file_outputget_crontablistcreate_tr3 "/tmp/tmp_crontab_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_head "定时任务脚本内容" >> $file_outputcreate_table_head1 >> $file_outputget_crontab_contentcreate_tr3 "/tmp/tmp_crontab_shellcontent_`date +%y%m%d`.txt"create_table_end >> $file_outputcreate_html_end >> $file_outputsed -i 's/BORDER=1/width="68%" border="1" bordercolor="#000000" cellspacing="0px" style="border-collapse:collapse"/g' $file_outputrm -rf /tmp/tmp*_`date +%y%m%d`.txt
}
# This script must be executed as root
RUID=`id|awk -F\( '{print $1}'|awk -F\= '{print $2}'`
if [ ${RUID} != "0" ];thenecho"This script must be executed as root"exit 1
fi
PLATFORM=`uname`
if [ ${PLATFORM} = "HP-UX" ] ; thenecho "This script does not support HP-UX platform for the time being"
exit 1
elif [ ${PLATFORM} = "SunOS" ] ; thenecho "This script does not support SunOS platform for the time being"
exit 1
elif [ ${PLATFORM} = "AIX" ] ; thenecho "This script does not support AIX platform for the time being"
exit 1
elif [ ${PLATFORM} = "Linux" ] ; thencreate_html
fi

这篇关于Linux服务器系统自动巡检脚本生成html报告的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1058755

相关文章

Linux镜像文件制作方式

《Linux镜像文件制作方式》本文介绍了Linux镜像文件制作的过程,包括确定磁盘空间布局、制作空白镜像文件、分区与格式化、复制引导分区和其他分区... 目录1.确定磁盘空间布局2.制作空白镜像文件3.分区与格式化1) 分区2) 格式化4.复制引导分区5.复制其它分区1) 挂载2) 复制bootfs分区3)

Java使用Spire.Barcode for Java实现条形码生成与识别

《Java使用Spire.BarcodeforJava实现条形码生成与识别》在现代商业和技术领域,条形码无处不在,本教程将引导您深入了解如何在您的Java项目中利用Spire.Barcodefor... 目录1. Spire.Barcode for Java 简介与环境配置2. 使用 Spire.Barco

SpringBoot返回文件让前端下载的几种方式

《SpringBoot返回文件让前端下载的几种方式》文章介绍了开发中文件下载的两种常见解决方案,并详细描述了通过后端进行下载的原理和步骤,包括一次性读取到内存和分块写入响应输出流两种方法,此外,还提供... 目录01 背景02 一次性读取到内存,通过响应输出流输出到前端02 将文件流通过循环写入到响应输出流

SpringBoot+Vue3整合SSE实现实时消息推送功能

《SpringBoot+Vue3整合SSE实现实时消息推送功能》在日常开发中,我们经常需要实现实时消息推送的功能,这篇文章将基于SpringBoot和Vue3来简单实现一个入门级的例子,下面小编就和大... 目录前言先大概介绍下SSE后端实现(SpringBoot)前端实现(vue3)1. 数据类型定义2.

SpringBoot集成iText快速生成PDF教程

《SpringBoot集成iText快速生成PDF教程》本文介绍了如何在SpringBoot项目中集成iText9.4.0生成PDF文档,包括新特性的介绍、环境准备、Service层实现、Contro... 目录SpringBoot集成iText 9.4.0生成PDF一、iText 9新特性与架构变革二、环

Linux服务器数据盘移除并重新挂载的全过程

《Linux服务器数据盘移除并重新挂载的全过程》:本文主要介绍在Linux服务器上移除并重新挂载数据盘的整个过程,分为三大步:卸载文件系统、分离磁盘和重新挂载,每一步都有详细的步骤和注意事项,确保... 目录引言第一步:卸载文件系统第二步:分离磁盘第三步:重新挂载引言在 linux 服务器上移除并重新挂p

前端Visual Studio Code安装配置教程之下载、汉化、常用组件及基本操作

《前端VisualStudioCode安装配置教程之下载、汉化、常用组件及基本操作》VisualStudioCode是微软推出的一个强大的代码编辑器,功能强大,操作简单便捷,还有着良好的用户界面,... 目录一、Visual Studio Code下载二、汉化三、常用组件1、Auto Rename Tag2

Apache服务器IP自动跳转域名的问题及解决方案

《Apache服务器IP自动跳转域名的问题及解决方案》本教程将详细介绍如何通过Apache虚拟主机配置实现这一功能,并解决常见问题,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,... 目录​​问题背景​​解决方案​​方法 1:修改 httpd-vhosts.conf(推荐)​​步骤

idea-java序列化serialversionUID自动生成方式

《idea-java序列化serialversionUID自动生成方式》Java的Serializable接口用于实现对象的序列化和反序列化,通过将对象转换为字节流来存储或传输,实现Serializa... 目录简介实现序列化serialVersionUID配置使用总结简介Java.io.Seripyth

Linux下屏幕亮度的调节方式

《Linux下屏幕亮度的调节方式》文章介绍了Linux下屏幕亮度调节的几种方法,包括图形界面、手动调节(使用ACPI内核模块)和外接显示屏调节,以及自动调节软件(CaliseRedshift和Reds... 目录1 概述2 手动调节http://www.chinasem.cn2.1 手动屏幕调节2.2 外接显