SUSE / openSUSE This Forum is for the discussion of Suse Linux. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
09-05-2005, 07:30 AM
|
#1
|
LQ Newbie
Registered: May 2005
Posts: 7
Rep:
|
Interpreting /proc/diskstats
HI,
I need to interpret the entries in the file "/proc/diskstats". I searched and found about the first three fields. The first three fields are "Major Device Number", "minor Device Number" and "Device Name". Could anyone help me interpret the rest of the fields.
Thanks.
Rajesh.
|
|
|
Click here to see the post LQ members have rated as the most helpful post in this thread.
|
09-06-2005, 11:48 PM
|
#2
|
Member
Registered: Jun 2005
Distribution: Debian
Posts: 356
Rep:
|
Take a look at Documentation/iostats.txt in a kernel source tree.
|
|
|
09-08-2005, 07:21 AM
|
#3
|
LQ Newbie
Registered: May 2005
Posts: 7
Original Poster
Rep:
|
I have searched throughout my box and was not able to find the file "iostat.txt". could you please help me.
|
|
|
09-08-2005, 10:27 AM
|
#4
|
Member
Registered: Jun 2005
Distribution: Debian
Posts: 356
Rep:
|
It's iostats.txt, plural. And it's in the kernel source tree, if you haven't installed any kernel-source packages or downloaded the source from kernel.org you probably won't have one.
|
|
|
07-15-2009, 02:03 AM
|
#5
|
LQ Newbie
Registered: Jul 2009
Posts: 1
Rep:
|
Field 1 -- # of reads issued
Field 2 -- # of reads merged, field 6 -- # of writes merged
Field 3 -- # of sectors read
Field 4 -- # of milliseconds spent reading
Field 5 -- # of writes completed
Field 7 -- # of sectors written
Field 8 -- # of milliseconds spent writing
Field 9 -- # of I/Os currently in progress
Field 10 -- # of milliseconds spent doing I/Os
Field 11 -- weighted # of milliseconds spent doing I/Os
#cat /proc/diskstats | grep hda
3 0 hda 43205 4113 4800428 280967 1051597 1682874 21876608 1950120 0 858685 2231096
3 1 hda1 25838 525266 1505217 12041736
3 2 hda2 846 1164 88 704
3 3 hda3 20498 4272886 1229274 9834168
Let`s consider "How I can get stats for my /dev/hda3 ??"
Let`s consider this line : 3 3 hda3 20498 4272886 1229274 9834168
After a word "hda3" we have four 32-bit (type integer) fields, us interesting these:
The second field: 4272886 (total number of sectors which normally reads from /dev/hda3)
and The Fourth filed : 9834168 (total number of sectors which normally writes to /dev/hda3)
These two fields - all that is necessary for us. A /proc/diskstats continuously updated and all that is necessary for us - make measurements for "second field" and "fourth field" in two different moment of time, receiving a difference of values and dividing it into an interval of time, we shall have Disk I/O stats in sectors/sec. Multiply this result on 512 (number of bytes in one sector) we shall have Disk I/O stats in bytes/sec.
May be exist a problem how to measure precisely moment of a time in seconds ...
Here a piece of my code on С for this purpose:
|
|
2 members found this post helpful.
|
12-30-2013, 01:34 PM
|
#6
|
Member
Registered: May 2012
Location: San Luis, Argentina
Distribution: Debian
Posts: 205
Rep:
|
First off, I apologize for replying to an old thread, but I thought that someone might find this useful:
Quote:
What: /proc/diskstats
Date: February 2008
Contact: Jerome Marchand <jmarchan@redhat.com>
Description:
The /proc/diskstats file displays the I/O statistics
of block devices. Each line contains the following 14
fields:
1 - major number
2 - minor mumber
3 - device name
4 - reads completed successfully
5 - reads merged
6 - sectors read
7 - time spent reading (ms)
8 - writes completed
9 - writes merged
10 - sectors written
11 - time spent writing (ms)
12 - I/Os currently in progress
13 - time spent doing I/Os (ms)
14 - weighted time spent doing I/Os (ms)
For more details refer to Documentation/iostats.txt
|
Source: https://www.kernel.org/doc/Documenta...ocfs-diskstats
|
|
4 members found this post helpful.
|
02-23-2014, 05:58 AM
|
#7
|
LQ Newbie
Registered: Feb 2014
Posts: 2
Rep:
|
Thank you gacanepa !
You've been of great help... you're the first one i found explaining the true meaning of all these numbers... (after a good 15min google search )
I wish there was a like button, you made my day.
|
|
|
02-23-2014, 06:37 AM
|
#8
|
LQ Veteran
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,317
|
There is - 2 actually.
Click the "Yes" after "Did you find this post useful?", or if you want to leave a comment, click the "rep" link under the userid on the left.
Oh, and welcome ...
|
|
2 members found this post helpful.
|
02-25-2014, 03:10 PM
|
#9
|
LQ Newbie
Registered: Feb 2014
Posts: 2
Rep:
|
Didn't see that... Thank you.
And Thanks again for the welcome, i always end myself on this website after searching,
without ever posting or thanking... what a rude person i am
|
|
|
All times are GMT -5. The time now is 05:16 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|