x32x01
  • by x32x01 ||
Disk IO issues (input/output) are one of the most common causes of poor performance on Linux system.
This occurs when applications try to quickly read or write too much data on storage device such as hard drives, SAN & NAS, which forces applications and users to wait.

top command can be used to see if the CPU is waiting for disk operations to complete. The 'wa' metric shows IO-wait, which is the amount of time the CPU spends waiting for IO completion shown as a percentage.
6 Best Tools to Monitor Disk IO Performance in Linux.png
In this guide, we will explain how to use various Linux commands to identify disk IO performance issues.

The below six commands are most useful when troubleshooting or monitoring real-time disk activity on Linux.
  • iotop
  • iostat
  • vmstat
  • atop
  • dstat
  • ioping
1) iotop
iotop is a top-like utility for displaying real-time disk I/O performance, which actually display a list of processes that perform I/O. Run the iotop command with '--only or -o' option to see the disk I/O activity as shown below:
Code:
# iotop --only
Details:
  • o : Only show processes or threads actually doing I/O
iotop-linux-disk-io-performance-monitoring-1-1024x356.jpg

2) iostat
iostat command is used for monitoring system input/output statistics for devices and partitions. It monitors system I/O by observing the time the devices are active in relation to their average transfer rates.
It comes with various information that are related to disk I/O, which can be seen by running the below command:
Code:
# iostat -dxm
Details:
  • x : Show more detailed statistics information.
  • d : Display only the device report.
  • m : Display statistics in MB.
iostat-linux-disk-io-performance-monitoring-1-1024x133.jpg

3) vmstat
vmstat command stands for virtual memory statistics. It is a performance monitoring command, which also provides information about block IO and CPU activity in addition to memory.
The first line of the report will contain the average I/O values since the last reboot and the subsequent lines show real-time statistics as shown below:
Code:
# vmstat -d 1 5
Details:
  • d : Display only the disk statistics
  • Time Interval (1) : The statistics will be re-measured and reported every second
  • Count Value (5) : The statistics will be reported five times before it exits.
vmstat-linux-disk-io-performance-monitoring-1-1024x382.jpg

4) atop
atop command is another performance monitoring tool that is capable of reporting the activity of all processes (even if processes have finished during the interval) on a Linux system.
It reports a statistic per process every 10 seconds, which quickly grasps the changes taking place in the system.
Code:
# atop | grep DSK
atop-linux-disk-io-performance-monitoring-1-1024x230.jpg

5) dstat
dstat command is another handy tool for monitoring systems during performance tuning tests, benchmarks or troubleshooting. It overcomes some of the limitations of other tools and adds some extra features, more counters and flexibility.
By default, it displays reports at 1 second interval:
Code:
# dstat --disk --io
dstat-linux-disk-io-performance-monitoring-1.png
For specific disk, run:
Code:
# dstat --disk --io -D sda

6) ioping
ioping is used to monitor I/O speed and latency in real time, whereas ping command shows network latency. This simple utility makes you understand how long it takes a disk to respond to requests.
Code:
# ioping /dev/nvme0n1 -c4
ioping-linux-disk-io-performance-monitoring-1-1024x306.jpg
Closing Notes
In this tutorial, you have learned several commands for measuring disk I/O performance in real-time. We have only added a few options, please visit their man page to dig further into this topic.

If you have any questions or feedback, feel free to comment below.
 

Similar Threads

x32x01
Replies
0
Views
87
x32x01
x32x01
x32x01
Replies
0
Views
100
x32x01
x32x01
x32x01
Replies
0
Views
132
x32x01
x32x01
x32x01
Replies
0
Views
120
x32x01
x32x01
x32x01
Replies
0
Views
101
x32x01
x32x01
TAGs: Tags
monitor disk monitor disk io performance monitor disk performance

Register & Login Faster

Forgot your password?

Latest Resources

Forum Statistics

Threads
517
Messages
518
Members
45
Latest Member
Tacola
Back
Top