IT评测·应用市场-qidao123.com

标题: linux 系统监控脚本 [打印本页]

作者: 民工心事    时间: 2024-6-13 05:51
标题: linux 系统监控脚本
1.对CPU的监控函数
  1. function GetCpu(){
  2.         cpu_num=`grep -c "model name" /proc/cpuinfo`
  3.         cpu_user=`top -b -n 1 | grep Cpu | awk '{print $2}' | cut -f 1 -d "%"`
  4.         cpu_system=`top -b -n 1 | grep Cpu | awk '{print $4}' | cut -f 1 -d "%"`
  5.         cpu_idle=`top -b -n 1 | grep Cpu | awk '{print $8}' | cut -f 1 -d "%"`
  6.         cpu_iowait=`top -b -n 1 | grep Cpu | awk '{print $10}' | cut -f 1 -d "%"`
  7.         cpu_interrupt=`vmstat -n 1 1 | sed -n 3p | awk '{print $11}'`
  8.         cpu_context_switch=`vmstat -n 1 1 | sed -n 3p | awk '{print $12}'`
  9.         cpu_load_15min=`uptime | awk '{print $12}' | cut -f 1 -d ','`
  10.         cpu_load_5min=`uptime | awk '{print $11}' | cut -f 1 -d ','`
  11.         cpu_load_1min=`uptime | awk '{print $10}' | cut -f 1 -d ','`
  12.         color "cpu总核数:" "$cpu_num"
  13.         color "用户空间占用CPU百分比:" "$cpu_user"
  14.         color "内核空间占用CPU百分比:" "$cpu_system"
  15.         color "空闲CPU百分比:" "$cpu_idle"
  16.         color "等待输入输出占CPU百分比:" "$cpu_iowait"
  17.         color "CPU中断次数:" "$cpu_interrupt"
  18.         color "CPU上下文切换次数:" "$cpu_context_switch"
  19.         color "CPU 15分钟前到现在的负载平均值:" "$cpu_load_15min"
  20.         color "CPU 5分钟前到现在的负载平均值:" "$cpu_load_5min"
  21.         color "CPU 1分钟前到现在的负载平均值:" "$cpu_load_1min"
  22. }
复制代码
2.对内存的监控函数
  1. function GetMem(){
  2.         mem_total=`free | grep Mem | awk '{print $2}'`
  3.         mem_sys_used=`free | grep Mem | awk '{print $3}'`
  4.         mem_sys_free=`free | grep Mem | awk '{print $4}'`
  5.         mem_user_used=`free | sed -n 3p | awk '{print $3}'`
  6.         mem_user_free=`free | sed -n 3p | awk '{print $4}'`
  7.         mem_swap_total=`free | grep Swap | awk '{print $2}'`
  8.         mem_swap_used=`free | grep Swap | awk '{print $3}'`
  9.         mem_swap_free=`free | grep Swap | awk '{print $4}'`
  10.         color "物理内存总量:" "$mem_total"
  11.         color "已使用内存总量(操作系统):" "$mem_sys_used"
  12.         color "剩余内存总量(操作系统):" "$mem_sys_free"
  13.         color "已使用内存总量(应用程序):" "$mem_user_used"
  14.         color "剩余内存总量(应用程序):" "$mem_user_free"
  15.         color "交换分区总大小:" "$mem_swap_total"
  16.         color "已使用交换分区大小:" "$mem_swap_used"
  17.         color "剩余交换分区大小:" "$mem_swap_free"
  18. }
复制代码
3.对磁盘IO的监控函数
  1. function GetDiskIo(){
  2.         disk=sda
  3.         read -p "请输入指定磁盘:(eg:sda)" input_disk
  4.         if [ -z "$input_disk" ]; then
  5.                 echo "用户未输入,使用默认值 $disk"
  6.                 input_disk="$disk"  # 由于未赋值,这里相当于保持默认
  7.         else
  8.                 echo "用户输入的disk路径: $input_disk"
  9.         fi
  10.         echo "指定设备($input_disk)的统计信息"
  11.         disk_sda_rs=`iostat -kx | grep $input_disk| awk '{print $4}'`
  12.         disk_sda_ws=`iostat -kx | grep $input_disk| awk '{print $5}'`
  13.         disk_sda_avgqu_sz=`iostat -kx | grep $input_disk| awk '{print $9}'`
  14.         disk_sda_await=`iostat -kx | grep $input_disk| awk '{print $10}'`
  15.         disk_sda_svctm=`iostat -kx | grep $input_disk| awk '{print $11}'`
  16.         disk_sda_util=`iostat -kx | grep $input_disk| awk '{print $12}'`
  17.         color "每秒向设备发起的读请求次数:" "$disk_sda_rs"
  18.         color "每秒向设备发起的写请求次数:" "$disk_sda_ws"
  19.         color "向设备发起的I/O请求队列长度平均值:" "$disk_sda_avgqu_sz"
  20.         color "每次向设备发起的I/O请求平均时间:" "$disk_sda_await"
  21.         color "向设备发起的I/O服务时间均值:" "$disk_sda_svctm"
  22.         color "向设备发起I/O请求的CPU时间百分占比:" "$disk_sda_util"
  23. }
复制代码
4.对线程状态的监控函数
  1. function GetPidstat(){
  2.         #初始化变量
  3.         Ptotal=0
  4.         Rtotal=0
  5.         Stotal=0
  6.         Ttotal=0
  7.         Dtotal=0
  8.         Ztotal=0
  9.         for pid in /proc/[1-9]*
  10.         do
  11.                 #获取进程状态
  12.                 let Ptotal=Ptotal+1
  13.                 stat=$(cd $pid && cat stat| awk '{print $3}')
  14.                 case $stat in
  15.                 R)
  16.                 let Rtotal=Rtotal+1
  17.                 ;;
  18.                 S)
  19.                 let Stotal=Stotal+1
  20.                 ;;
  21.                 T)
  22.                 let Ttotal=Ttotal+1
  23.                 ;;
  24.                 D)
  25.                 let Dtotal=Dtotal+1
  26.                 ;;
  27.                 Z)
  28.                 let Ztotal=Ztotal+1
  29.                 ;;
  30.                 esac
  31.         done
  32.         color "当前进程总数为:" "$Ptotal"
  33.         color "其中Running进程数为:" "$Rtotal"
  34.         color "其中Sleeping进程数为:" "$Stotal"
  35.         color "其中Stopped进程数为:" "$Ttotal"
  36.         color "其中Disk sleep进程数为:" "$Dtotal"
  37.         color "其中Zombies进程数为:" "$Ztotal"
  38. }
复制代码
5.对网卡流量的监控函数
  1. function GetNet(){
  2.         eth_name=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $2}'`
  3.         rxpck_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $3}'`
  4.         txpck_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $4}'`
  5.         rxkB_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $5}'`
  6.         txkB_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $6}'`
  7.         rxcmp_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $7}'`
  8.         txcmp_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $8}'`
  9.         rxmcst_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $9}'`
  10.         color "$eth_name每秒钟接收的数据包:" "$rxpck_num"
  11.         color "$eth_name每秒钟发送的数据包:" "$txpck_num"
  12.         color "$eth_name每秒钟接收的字节数:" "$rxkB_num"
  13.         color "$eth_name每秒钟发送的字节数:" "$txkB_num"
  14.         color "$eth_name每秒钟接收的压缩数据包:" "$rxcmp_num"
  15.         color "$eth_name每秒钟发送的压缩数据包:" "$txcmp_num"
  16.         color "$eth_name每秒钟接收的多播数据包:" "$rxmcst_num"
  17. }
复制代码
6.实现结果
  1. #!/bin/bashfunction color() {        local a=$1        local b=$2        echo -e "\033[1;32m$a\033[0m \033[1;31m$b\033[0m"}function GetIp(){        IP=`ifconfig | grep inet | grep -vE 'inet6|127.0.0.1' | awk '{print $2}'`        echo "IP地址:"$IP}#检查CPU使用率function GetCpu(){
  2.         cpu_num=`grep -c "model name" /proc/cpuinfo`
  3.         cpu_user=`top -b -n 1 | grep Cpu | awk '{print $2}' | cut -f 1 -d "%"`
  4.         cpu_system=`top -b -n 1 | grep Cpu | awk '{print $4}' | cut -f 1 -d "%"`
  5.         cpu_idle=`top -b -n 1 | grep Cpu | awk '{print $8}' | cut -f 1 -d "%"`
  6.         cpu_iowait=`top -b -n 1 | grep Cpu | awk '{print $10}' | cut -f 1 -d "%"`
  7.         cpu_interrupt=`vmstat -n 1 1 | sed -n 3p | awk '{print $11}'`
  8.         cpu_context_switch=`vmstat -n 1 1 | sed -n 3p | awk '{print $12}'`
  9.         cpu_load_15min=`uptime | awk '{print $12}' | cut -f 1 -d ','`
  10.         cpu_load_5min=`uptime | awk '{print $11}' | cut -f 1 -d ','`
  11.         cpu_load_1min=`uptime | awk '{print $10}' | cut -f 1 -d ','`
  12.         color "cpu总核数:" "$cpu_num"
  13.         color "用户空间占用CPU百分比:" "$cpu_user"
  14.         color "内核空间占用CPU百分比:" "$cpu_system"
  15.         color "空闲CPU百分比:" "$cpu_idle"
  16.         color "等待输入输出占CPU百分比:" "$cpu_iowait"
  17.         color "CPU中断次数:" "$cpu_interrupt"
  18.         color "CPU上下文切换次数:" "$cpu_context_switch"
  19.         color "CPU 15分钟前到现在的负载平均值:" "$cpu_load_15min"
  20.         color "CPU 5分钟前到现在的负载平均值:" "$cpu_load_5min"
  21.         color "CPU 1分钟前到现在的负载平均值:" "$cpu_load_1min"
  22. }
  23. #检查内存使用率function GetMem(){
  24.         mem_total=`free | grep Mem | awk '{print $2}'`
  25.         mem_sys_used=`free | grep Mem | awk '{print $3}'`
  26.         mem_sys_free=`free | grep Mem | awk '{print $4}'`
  27.         mem_user_used=`free | sed -n 3p | awk '{print $3}'`
  28.         mem_user_free=`free | sed -n 3p | awk '{print $4}'`
  29.         mem_swap_total=`free | grep Swap | awk '{print $2}'`
  30.         mem_swap_used=`free | grep Swap | awk '{print $3}'`
  31.         mem_swap_free=`free | grep Swap | awk '{print $4}'`
  32.         color "物理内存总量:" "$mem_total"
  33.         color "已使用内存总量(操作系统):" "$mem_sys_used"
  34.         color "剩余内存总量(操作系统):" "$mem_sys_free"
  35.         color "已使用内存总量(应用程序):" "$mem_user_used"
  36.         color "剩余内存总量(应用程序):" "$mem_user_free"
  37.         color "交换分区总大小:" "$mem_swap_total"
  38.         color "已使用交换分区大小:" "$mem_swap_used"
  39.         color "剩余交换分区大小:" "$mem_swap_free"
  40. }
  41. #检查磁盘IO状态function GetDiskIo(){
  42.         disk=sda
  43.         read -p "请输入指定磁盘:(eg:sda)" input_disk
  44.         if [ -z "$input_disk" ]; then
  45.                 echo "用户未输入,使用默认值 $disk"
  46.                 input_disk="$disk"  # 由于未赋值,这里相当于保持默认
  47.         else
  48.                 echo "用户输入的disk路径: $input_disk"
  49.         fi
  50.         echo "指定设备($input_disk)的统计信息"
  51.         disk_sda_rs=`iostat -kx | grep $input_disk| awk '{print $4}'`
  52.         disk_sda_ws=`iostat -kx | grep $input_disk| awk '{print $5}'`
  53.         disk_sda_avgqu_sz=`iostat -kx | grep $input_disk| awk '{print $9}'`
  54.         disk_sda_await=`iostat -kx | grep $input_disk| awk '{print $10}'`
  55.         disk_sda_svctm=`iostat -kx | grep $input_disk| awk '{print $11}'`
  56.         disk_sda_util=`iostat -kx | grep $input_disk| awk '{print $12}'`
  57.         color "每秒向设备发起的读请求次数:" "$disk_sda_rs"
  58.         color "每秒向设备发起的写请求次数:" "$disk_sda_ws"
  59.         color "向设备发起的I/O请求队列长度平均值:" "$disk_sda_avgqu_sz"
  60.         color "每次向设备发起的I/O请求平均时间:" "$disk_sda_await"
  61.         color "向设备发起的I/O服务时间均值:" "$disk_sda_svctm"
  62.         color "向设备发起I/O请求的CPU时间百分占比:" "$disk_sda_util"
  63. }
  64. function GetPidstat(){
  65.         #初始化变量
  66.         Ptotal=0
  67.         Rtotal=0
  68.         Stotal=0
  69.         Ttotal=0
  70.         Dtotal=0
  71.         Ztotal=0
  72.         for pid in /proc/[1-9]*
  73.         do
  74.                 #获取进程状态
  75.                 let Ptotal=Ptotal+1
  76.                 stat=$(cd $pid && cat stat| awk '{print $3}')
  77.                 case $stat in
  78.                 R)
  79.                 let Rtotal=Rtotal+1
  80.                 ;;
  81.                 S)
  82.                 let Stotal=Stotal+1
  83.                 ;;
  84.                 T)
  85.                 let Ttotal=Ttotal+1
  86.                 ;;
  87.                 D)
  88.                 let Dtotal=Dtotal+1
  89.                 ;;
  90.                 Z)
  91.                 let Ztotal=Ztotal+1
  92.                 ;;
  93.                 esac
  94.         done
  95.         color "当前进程总数为:" "$Ptotal"
  96.         color "其中Running进程数为:" "$Rtotal"
  97.         color "其中Sleeping进程数为:" "$Stotal"
  98.         color "其中Stopped进程数为:" "$Ttotal"
  99.         color "其中Disk sleep进程数为:" "$Dtotal"
  100.         color "其中Zombies进程数为:" "$Ztotal"
  101. }
  102. function GetNet(){
  103.         eth_name=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $2}'`
  104.         rxpck_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $3}'`
  105.         txpck_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $4}'`
  106.         rxkB_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $5}'`
  107.         txkB_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $6}'`
  108.         rxcmp_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $7}'`
  109.         txcmp_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $8}'`
  110.         rxmcst_num=`sar -n DEV 1 1|grep ens|awk 'NR==2{print $9}'`
  111.         color "$eth_name每秒钟接收的数据包:" "$rxpck_num"
  112.         color "$eth_name每秒钟发送的数据包:" "$txpck_num"
  113.         color "$eth_name每秒钟接收的字节数:" "$rxkB_num"
  114.         color "$eth_name每秒钟发送的字节数:" "$txkB_num"
  115.         color "$eth_name每秒钟接收的压缩数据包:" "$rxcmp_num"
  116.         color "$eth_name每秒钟发送的压缩数据包:" "$txcmp_num"
  117.         color "$eth_name每秒钟接收的多播数据包:" "$rxmcst_num"
  118. }
  119. echo "---------------------开始检查CPU----------------------"GetCpuecho "---------------------开始检查内存---------------------"GetMemecho "---------------------开始检查磁盘IO-------------------"GetDiskIoecho "---------------------开始检查进程状态-----------------"GetPidstatecho "---------------------开始检查网卡流量-----------------"GetNet
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4