• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    自动杀掉占用较多CPU资源的Shell脚本

    复制代码 代码如下:

    #!/bin/bash

    # March-13-2006
    # CPUuse trigger script by Noel
    #
    # bash code to watch a running program's CPU usage.
    # if it's above a set value, it will auto send an email.
    # You will need to set a Cron job to run this script every xx minutes
    #
    # Set some needed things:
    #
    processToWatch="convert" # in my case I need to watch convert
    emailAddress="root@host" # this is my main emailaddress
    triggerValue=90 # if the CPU use is above 90% send an email. DO NOT USE a DOT or COMMA!
    tempFileName=tmp-cpu # some name of the temp file for the ps, grep data

    ps auxww | grep "$processToWatch" | grep -v grep > /tmp/$tempFileName
    export LINE
    (
    read LINE
    while [ -n "$LINE" ]
    do
    set $LINE
    read LINE
    if [ $(echo "$3" | sed -e 's/\.[0-9]*//g') -gt $triggerValue ]; then
    mail -s "CPU message alert for: $processToWatch" $emailAddress -END
    This is to inform you that the following process: $processToWatch with PID (Process ID) $2 is now using more than your preset $triggerValue value.

    Process: $processToWatch is using: $3 of CPU power!
    The command used is: $11
    END
    fi
    done
    ) /tmp/$tempFileName

    您可能感兴趣的文章:
    • 一个用了统计CPU 内存 硬盘 使用率的shell脚本
    • 统计 cpu 内存 使用率的shell脚本代码
    • 消耗CPU资源的shell脚本
    • 使用shell脚本采集系统cpu、内存、磁盘、网络等信息
    • Linux中使用Shell脚本查看Java线程的CPU使用情况
    • Shell脚本实现把进程负载均衡到多核CPU中
    • shell脚本监控系统负载、CPU和内存使用情况
    • Linux shell脚本实现CPU预警
    上一篇:Shell脚本获取进程的运行时间
    下一篇:Linux中获取某个进程的系统调用以及参数(故障排查案例)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    自动杀掉占用较多CPU资源的Shell脚本 自动,杀掉,占用,较多,CPU,