使用 iostat -x 和 Unix 命令获取 r/s w/s
Get r/s w/s using iostat -x and Unix commands
我正在从事一个系统监控项目,想知道如何在 运行 iostat -x 时只获取设备、r/s 和返回的 w/s 列。我确定我必须使用 cut some how 但是我尝试在此处获取第 4 列 (r/s):iostat -x | cut -f 4 不正确
试试这个:
iostat -x | awk '{print }'
或
iostat -x | sed '1,/Device:/d' | awk '{print }'
我正在从事一个系统监控项目,想知道如何在 运行 iostat -x 时只获取设备、r/s 和返回的 w/s 列。我确定我必须使用 cut some how 但是我尝试在此处获取第 4 列 (r/s):iostat -x | cut -f 4 不正确
试试这个:
iostat -x | awk '{print }'
或
iostat -x | sed '1,/Device:/d' | awk '{print }'