科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件使用shell脚本进行服务器系统监控——系统负载监控(3)

使用shell脚本进行服务器系统监控——系统负载监控(3)

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

采用KSH脚本对负载监控。增强uptime功能,该脚本可以用于AIX/HP-UX/SUN/LINUX等平台。

作者:徐建明 来源:CSDN 2008年2月5日

关键字: 负载监控 服务器 shell脚本 Linux

  • 评论
  • 分享微博
  • 分享邮件

#!/bin/ksh


MAXLOAD=2.00
typeset -i INT_MAXLOAD=$MAXLOAD

# Find the correct field to extract based on how long
# the system has been up, or since the last reboot.

if $(uptime | grep day | grep min >/dev/null)
then
     FIELD=11
elif $(uptime | grep day | grep hrs >/dev/null)
then
     FIELD=11
elif $(uptime | grep day >/dev/null)
then
     FIELD=10
elif $(uptime | grep min >/dev/null)
then
     FIELD=9
else
     FIELD=8
fi

###################################################
######## BEGIN GATHERING STATISTICS HERE ##########
###################################################

echo "\nGathering System Load Average using the \"uptime\" command\n"

# This next command statement extracts the latest
# load statistics no matter what the UNIX flavor is.

LOAD=$(uptime | sed s/,//g | awk '{print $'$FIELD'}')

# We need an integer representation of the $LOAD
# variable to do the test for the load going over
# the set threshold defince by the $INT_MAXLOAD
# variable

typeset -i INT_LOAD=$LOAD

# If the current load has exceeded the threshold then
# issue a warning message. The next step always shows
# the user what the current load and threshold values
# are set to.

((INT_LOAD >= INT_MAXLOAD)) && echo "\nWARNING: System load has \
reached ${LOAD}\n"

echo "\nSystem load value is currently at ${LOAD}"
echo "The load threshold is set to ${MAXLOAD}\n"


 

查看本文来源
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章