nagios 监控xenserver 流量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nagios 监控xenserver 流量相关的知识,希望对你有一定的参考价值。
cat check_xen_pif.sh #!/bin/sh count=0 uuid_list=`xe bond-list | grep master | awk ‘{print $4}‘` #get io_read_kbs param for uuid in $uuid_list do io_read[$count]=`xe pif-param-get param-name=io_read_kbs uuid=$uuid` # echo ${io_read[$count]} let count=count+1 done #get io_write_kbs param count=0 for uuid in $uuid_list do io_write[$count]=`xe pif-param-get param-name=io_write_kbs uuid=$uuid` # echo ${io_write[$count]} let count=count+1 done count=0 performance1="" performance2="" while [ $count -lt ${#io_read[@]} ] do performance1="$performance1 bond${count}(r,w): ${io_read[$count]}kb,${io_write[$count]}kb;" performance2="$performance2 bond${count}_io_read_kbs=${io_read[$count]};1500;2000;0;10000;bond${count}_io_write_kbs=${io_write[$count]};1500;2000;0;10000;" let count=count+1 done echo "$performance1 | $performance2" exit 0
本文出自 “月童” 博客,谢绝转载!
以上是关于nagios 监控xenserver 流量的主要内容,如果未能解决你的问题,请参考以下文章