shell分析swap分區被哪些程式佔用(stress類比環境)

來源:互聯網
上載者:User

標籤:shell swap stress

1、查看版本
cat /etc/debian_version
7.8

2、看下記憶體(我這邊是256MB記憶體 swap分了4G)
free -m
             total       used       free     shared    buffers     cached
Mem:           231        124        106          0          8         79
-/+ buffers/cache:         36        194
Swap:         3814          0       3814

3、使用stress類比佔用swap分區環境
stress --cpu 1 --io 1 --vm 2 --vm-bytes 15000000 --vm-keep --verbose

4、查看到swap分區不斷在使用

5、使用指令碼分析下
#!/bin/bash
#--------------------------------------------------  
#Created:2015-05-20
#Author:jimmygong
#Mail:[email protected]
#Function:
#Version:1.0
#--------------------------------------------------
function swapoccupancy ()
{
    echo -e "Pid\tSwap\tProgame"
    num=0
    for pid in `ls -1 /proc|egrep "^[0-9]"`
    do
        if [[ $pid -lt 20 ]]
        then
            continue
        fi
        program=`ps -eo pid,command|grep -w $pid|grep -v grep|awk ‘{print $2}‘`
        for swap in `grep Swap /proc/$pid/smaps 2>/dev/null|awk ‘{print $2}‘`
        do
            let num=$num+$swap
        done
        echo -e "${pid}\t${num}\t${program}"
        num=0
    done|sort -nrk2|head
}

swapoccupancy
exit 0

6、我這邊指令碼寫的是取佔用前10的

本文出自 “7928217” 部落格,請務必保留此出處http://7938217.blog.51cto.com/7928217/1653649

shell分析swap分區被哪些程式佔用(stress類比環境)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.