免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4685 | 回复: 2
打印 上一主题 下一主题

请教iostat和diskstats之间的换算关系 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-11-04 14:38 |只看该作者 |倒序浏览
Field 1 -- rio # of reads issued
Field 2 -- rmerge  # of reads merged,
Field 3 -- rsect # of sectors read
Field 4 -- ruse  # of milliseconds spent reading
Field 5 -- wio # of writes completed
field 6 -- wmerge # of writes merged
Field 7 -- wsect # of sectors written
Field 8 -- wuse# of milliseconds spent writing
Field 9 -- running # of I/Os currently in progress
Field 10 -- use # of milliseconds spent doing I/Os
Field 11 -- aveq weighted # of milliseconds spent doing I/Os

for i in 1 2; do cat  /proc/diskstats; sleep 1; done
                   rio、 rmerge 、rsect、 ruse 、wio、 wmerge、 wsect 、wuse、 running 、use和 aveq项
   8    0 sda 2366680910 151758 1644555381 3016902476 2792407 3059224863 1611413747 2518779129 1 4025070448 1240541548
   8    1 sda1 1039 3822 7 14
   8    2 sda2 4661829 103194946 38218053 305744376
   8    3 sda3 1260 1777 46 368
   8    4 sda4 1 2 0 0
   8    5 sda5 2362162302 1541112050 3023681868 1304828507


   8    0 sda 2366681069 151758 1644560845 3016903407 2792643 3059225677 1611421745 2518779197 16 4025071067 1240543392
   8    1 sda1 1039 3822 7 14
   8    2 sda2 4661830 103194954 38218053 305744376
   8    3 sda3 1260 1777 46 368
   8    4 sda4 1 2 0 0
   8    5 sda5 2362162475 1541117506 3023682918 1304836505

----------------------------------------------------------------------------------------------------
avg-cpu:  %user   %nice    %sys %iowait   %idle
           1.00    0.00    0.24    4.51   94.25

Device:            tps   Blk_read/s   Blk_wrtn/s   Blk_read   Blk_wrtn
sda              93.00        64.55        63.25 1644553861 1611413483
sda1              0.00         0.00         0.00       3822         14
sda2              1.68         4.05        12.00  103194946  305744376
sda3              0.00         0.00         0.00       1777        368
sda4              0.00         0.00         0.00          2          0
sda5            211.39        60.49        51.21 1541110530 1304828243

avg-cpu:  %user   %nice    %sys %iowait   %idle
           1.38    0.00    0.25    8.14   90.24

Device:            tps   Blk_read/s   Blk_wrtn/s   Blk_read   Blk_wrtn
sda             289.00      5768.00       548.00       5768        548
sda1              0.00         0.00         0.00          0          0
sda2              1.00         8.00         0.00          8          0
sda3              0.00         0.00         0.00          0          0
sda4              0.00         0.00         0.00          0          0
sda5            291.00      5760.00       548.00       5760        548
----------------------------------------------------------------------------------------------------

以上几乎是同时间隔1秒执行的,想请教一下

tps是不是rio/s+wio/s?
我感觉就是,但没看到源码,求教证实

宁外请问iops是怎么换算得到的?

论坛徽章:
0
2 [报告]
发表于 2008-11-04 14:44 |只看该作者
tps
                     Indicate  the number of transfers per second that were issued to the device. A transfer is an I/O request to
                     the device. Multiple logical requests can be combined into a single I/O request to the device. A transfer is
                     of indeterminate size.

论坛徽章:
0
3 [报告]
发表于 2008-11-04 15:28 |只看该作者
/*
***************************************************************************
* Write basic stats, read from /proc/stat, /proc/{diskstats,partitions}
* or from sysfs
***************************************************************************
*/
void write_basic_stat(int curr, unsigned long long itv, int flags, int fctr,
                      struct io_hdr_stats *shi, struct io_stats *ioi,
                      struct io_stats *ioj)
{
   unsigned long long rd_sec, wr_sec;

   printf("%-13s", shi->name);

   if (HAS_SYSFS(flags) ||
       HAS_DISKSTATS(flags) || HAS_PPARTITIONS(flags)) {
      /* Print stats coming from /sys or /proc/{diskstats,partitions} */
      rd_sec = ioi->rd_sectors - ioj->rd_sectors;
      if ((ioi->rd_sectors < ioj->rd_sectors) && (ioj->rd_sectors <= 0xffffffff))
         rd_sec &= 0xffffffff;
      wr_sec = ioi->wr_sectors - ioj->wr_sectors;
      if ((ioi->wr_sectors < ioj->wr_sectors) && (ioj->wr_sectors <= 0xffffffff))
         wr_sec &= 0xffffffff;

      printf(" %8.2f %12.2f %12.2f %10llu %10llu\n",
             S_VALUE(ioj->rd_ios + ioj->wr_ios, ioi->rd_ios + ioi->wr_ios, itv),
             ll_s_value(ioj->rd_sectors, ioi->rd_sectors, itv) / fctr,
             ll_s_value(ioj->wr_sectors, ioi->wr_sectors, itv) / fctr,
             (unsigned long long) rd_sec / fctr,
             (unsigned long long) wr_sec / fctr);
   }
   else {
      /* Print stats coming from /proc/stat */
      printf(" %8.2f %12.2f %12.2f %10lu %10lu\n",
             S_VALUE(ioj->dk_drive, ioi->dk_drive, itv),
             S_VALUE(ioj->dk_drive_rblk, ioi->dk_drive_rblk, itv) / fctr,
             S_VALUE(ioj->dk_drive_wblk, ioi->dk_drive_wblk, itv) / fctr,
             (ioi->dk_drive_rblk - ioj->dk_drive_rblk) / fctr,
             (ioi->dk_drive_wblk - ioj->dk_drive_wblk) / fctr);
   }
}



找到源码了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP