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

相关文章

Oracle数据库定时备份脚本方式(Linux)

《Oracle数据库定时备份脚本方式(Linux)》文章介绍Oracle数据库自动备份方案,包含主机备份传输与备机解压导入流程,强调需提前全量删除原库数据避免报错,并需配置无密传输、定时任务及验证脚本... 目录说明主机脚本备机上自动导库脚本整个自动备份oracle数据库的过程(建议全程用root用户)总结

SQL Server跟踪自动统计信息更新实战指南

《SQLServer跟踪自动统计信息更新实战指南》本文详解SQLServer自动统计信息更新的跟踪方法,推荐使用扩展事件实时捕获更新操作及详细信息,同时结合系统视图快速检查统计信息状态,重点强调修... 目录SQL Server 如何跟踪自动统计信息更新:深入解析与实战指南 核心跟踪方法1️⃣ 利用系统目录

Linux如何查看文件权限的命令

《Linux如何查看文件权限的命令》Linux中使用ls-R命令递归查看指定目录及子目录下所有文件和文件夹的权限信息,以列表形式展示权限位、所有者、组等详细内容... 目录linux China编程查看文件权限命令输出结果示例这里是查看tomcat文件夹总结Linux 查看文件权限命令ls -l 文件或文件夹

idea的终端(Terminal)cmd的命令换成linux的命令详解

《idea的终端(Terminal)cmd的命令换成linux的命令详解》本文介绍IDEA配置Git的步骤:安装Git、修改终端设置并重启IDEA,强调顺序,作为个人经验分享,希望提供参考并支持脚本之... 目录一编程、设置前二、前置条件三、android设置四、设置后总结一、php设置前二、前置条件

Python极速搭建局域网文件共享服务器完整指南

《Python极速搭建局域网文件共享服务器完整指南》在办公室或家庭局域网中快速共享文件时,许多人会选择第三方工具或云存储服务,但这些方案往往存在隐私泄露风险或需要复杂配置,下面我们就来看看如何使用Py... 目录一、android基础版:HTTP文件共享的魔法命令1. 一行代码启动HTTP服务器2. 关键参

Spring Security 单点登录与自动登录机制的实现原理

《SpringSecurity单点登录与自动登录机制的实现原理》本文探讨SpringSecurity实现单点登录(SSO)与自动登录机制,涵盖JWT跨系统认证、RememberMe持久化Token... 目录一、核心概念解析1.1 单点登录(SSO)1.2 自动登录(Remember Me)二、代码分析三、

Linux系统中查询JDK安装目录的几种常用方法

《Linux系统中查询JDK安装目录的几种常用方法》:本文主要介绍Linux系统中查询JDK安装目录的几种常用方法,方法分别是通过update-alternatives、Java命令、环境变量及目... 目录方法 1:通过update-alternatives查询(推荐)方法 2:检查所有已安装的 JDK方

Linux系统之lvcreate命令使用解读

《Linux系统之lvcreate命令使用解读》lvcreate是LVM中创建逻辑卷的核心命令,支持线性、条带化、RAID、镜像、快照、瘦池和缓存池等多种类型,实现灵活存储资源管理,需注意空间分配、R... 目录lvcreate命令详解一、命令概述二、语法格式三、核心功能四、选项详解五、使用示例1. 创建逻

Linux下在线安装启动VNC教程

《Linux下在线安装启动VNC教程》本文指导在CentOS7上在线安装VNC,包含安装、配置密码、启动/停止、清理重启步骤及注意事项,强调需安装VNC桌面以避免黑屏,并解决端口冲突和目录权限问题... 目录描述安装VNC安装 VNC 桌面可能遇到的问题总结描js述linux中的VNC就类似于Window

linux下shell脚本启动jar包实现过程

《linux下shell脚本启动jar包实现过程》确保APP_NAME和LOG_FILE位于目录内,首次启动前需手动创建log文件夹,否则报错,此为个人经验,供参考,欢迎支持脚本之家... 目录linux下shell脚本启动jar包样例1样例2总结linux下shell脚本启动jar包样例1#!/bin