码迷,mamicode.com
首页 > 其他好文 > 详细

IO队列长度监控

时间:2020-09-21 11:55:46      阅读:45      评论:0      收藏:0      [点我收藏+]

标签:egrep   bash   stat   done   pre   gre   long   wc -l   while   

IO队列长度监控

#!/bin/bash

io () {
  device_num=`iostat -x | egrep "^sd[a-z]"` | wc -l
  iostat -x 1 3 | egrep "^sa[a-z]" | tail -n +$((device_num+1)) | awk ‘{io_long[$1]+=$9}END{for (i in io_long)print (io_long[i], i)}‘ 
}


#while true
#do
  io
#  sleep 5
#done

IO队列长度监控

标签:egrep   bash   stat   done   pre   gre   long   wc -l   while   

原文地址:https://www.cnblogs.com/persisit/p/13693709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!