HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

ioping — Monitor I/O latency in real time. More information: <https://github.com/koct9i/ioping>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
latencycommandmonitoriopingclirealtimemore

Problem

How to use the ioping command: Monitor I/O latency in real time. More information: <https://github.com/koct9i/ioping>.

Solution

ioping — Monitor I/O latency in real time. More information: <https://github.com/koct9i/ioping>.

Show disk I/O latency using the default values and the current directory:
ioping .


Measure latency on /tmp using 10 requests of 1 megabyte each:
ioping {{[-c|-count]}} 10 {{[-s|-size]}} 1M /tmp


Measure disk seek rate on /dev/sdX:
ioping {{[-R|-rapid]}} {{/dev/sdX}}


Measure disk sequential speed on /dev/sdX:
ioping {{[-RL|-rapid -linear]}} {{/dev/sdX}}

Code Snippets

Show disk I/O latency using the default values and the current directory

ioping .

Measure latency on /tmp using 10 requests of 1 megabyte each

ioping {{[-c|-count]}} 10 {{[-s|-size]}} 1M /tmp

Measure disk seek rate on `/dev/sdX`

ioping {{[-R|-rapid]}} {{/dev/sdX}}

Measure disk sequential speed on `/dev/sdX`

ioping {{[-RL|-rapid -linear]}} {{/dev/sdX}}

Context

tldr-pages: common/ioping

Revisions (0)

No revisions yet.