I need the Input/output operations per second information of an application. Is there a way to monitor Input/output operations per second of an application ?
Asked
Active
Viewed 125 times
1 Answers
1
Programmatically getting per-process disk io statistics on Windows? seems to answer this question.
You can call GetProcessIoCounters to get overall disk I/O data per process - you'll need to keep track of deltas and converting to time-based rate yourself.
This API will tell you total number of I/O operations as well as total bytes.

Ramakanth Putta
- 676
- 4
- 15
-
If you find an exact duplicate you should vote to close as a duplicate, rather than make a new answer. – David Heffernan Jul 04 '17 at 07:46