1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/iostat.md

28 lines
528 B
Markdown
Raw Normal View History

2014-08-03 21:59:39 -04:00
# iostat
> Report statistics for devices and partitions.
2014-08-03 21:59:39 -04:00
- Display a report of CPU and disk statistics since system startup:
2014-08-03 21:59:39 -04:00
`iostat`
2014-08-03 21:59:39 -04:00
2016-07-11 21:07:30 +05:30
- Display a report of CPU and disk statistics with units converted to megabytes:
2016-07-11 10:38:53 +05:30
`iostat -m`
- Display CPU statistics:
2014-08-03 21:59:39 -04:00
`iostat -c`
- Display disk statistics with disk names (including LVM):
`iostat -N`
2016-07-11 21:07:30 +05:30
- Display extended disk statistics with disk names for device sda:
`iostat -xN {{sda}}`
2016-07-11 21:07:30 +05:30
- Display incremental reports of CPU and disk statistics every 2 second(s):
2014-08-03 21:59:39 -04:00
2016-07-11 10:38:53 +05:30
`iostat {{2}}`