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线程之线程的创建、属性、回收、退出、取消方式》文章总结了线程管理核心知识:线程号唯一、创建方式、属性设置(如分离状态与栈大小)、回收机制(join/detach)、退出方法(返回/pthr... 目录1. 线程号2. 线程的创建3. 线程属性4. 线程的回收5. 线程的退出6. 线程的取消7.

Linux下进程的CPU配置与线程绑定过程

《Linux下进程的CPU配置与线程绑定过程》本文介绍Linux系统中基于进程和线程的CPU配置方法,通过taskset命令和pthread库调整亲和力,将进程/线程绑定到特定CPU核心以优化资源分配... 目录1 基于进程的CPU配置1.1 对CPU亲和力的配置1.2 绑定进程到指定CPU核上运行2 基于

golang程序打包成脚本部署到Linux系统方式

《golang程序打包成脚本部署到Linux系统方式》Golang程序通过本地编译(设置GOOS为linux生成无后缀二进制文件),上传至Linux服务器后赋权执行,使用nohup命令实现后台运行,完... 目录本地编译golang程序上传Golang二进制文件到linux服务器总结本地编译Golang程序

Linux下删除乱码文件和目录的实现方式

《Linux下删除乱码文件和目录的实现方式》:本文主要介绍Linux下删除乱码文件和目录的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux下删除乱码文件和目录方法1方法2总结Linux下删除乱码文件和目录方法1使用ls -i命令找到文件或目录

Linux在线解压jar包的实现方式

《Linux在线解压jar包的实现方式》:本文主要介绍Linux在线解压jar包的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux在线解压jar包解压 jar包的步骤总结Linux在线解压jar包在 Centos 中解压 jar 包可以使用 u

linux解压缩 xxx.jar文件进行内部操作过程

《linux解压缩xxx.jar文件进行内部操作过程》:本文主要介绍linux解压缩xxx.jar文件进行内部操作,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、解压文件二、压缩文件总结一、解压文件1、把 xxx.jar 文件放在服务器上,并进入当前目录#

Linux系统性能检测命令详解

《Linux系统性能检测命令详解》本文介绍了Linux系统常用的监控命令(如top、vmstat、iostat、htop等)及其参数功能,涵盖进程状态、内存使用、磁盘I/O、系统负载等多维度资源监控,... 目录toppsuptimevmstatIOStatiotopslabtophtopdstatnmon

在Linux中改变echo输出颜色的实现方法

《在Linux中改变echo输出颜色的实现方法》在Linux系统的命令行环境下,为了使输出信息更加清晰、突出,便于用户快速识别和区分不同类型的信息,常常需要改变echo命令的输出颜色,所以本文给大家介... 目python录在linux中改变echo输出颜色的方法技术背景实现步骤使用ANSI转义码使用tpu

SpringBoot+Docker+Graylog 如何让错误自动报警

《SpringBoot+Docker+Graylog如何让错误自动报警》SpringBoot默认使用SLF4J与Logback,支持多日志级别和配置方式,可输出到控制台、文件及远程服务器,集成ELK... 目录01 Spring Boot 默认日志框架解析02 Spring Boot 日志级别详解03 Sp

linux hostname设置全过程

《linuxhostname设置全过程》:本文主要介绍linuxhostname设置全过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录查询hostname设置步骤其它相关点hostid/etc/hostsEDChina编程A工具license破解注意事项总结以RHE