• zabbix笔记之监控windows磁盘IO


    zabbix监控Windows磁盘IO

    在cmd中输入以下命令

    typeperf -qx | find "PhysicalDisk"

    单次IO大小

    PhysicalDisk(Total)Avg. Disk Bytes/Read #PhysicalDisk Avg. Disk Bytes Read
    PhysicalDisk(Total)Avg. Disk Bytes/Write
    perf_counter[234(Total)226] 读IO 单位是Bytes
    perf_counter[234(Total)228] 写IO 单位是Bytes

    IO响应时间 

    PhysicalDisk(Total)Avg. Disk sec/Read 
    PhysicalDisk(Total)Avg. Disk sec/Write
    perf_counter[234(Total)208] 读出数据所用时间 单位是秒
    perf_counter[234(Total)210] 写入据所用时间 单位是秒

    IOPS

    IO系统每秒所执行IO操作的次数 

    PhysicalDisk(Total)Disk Reads/sec 
    PhysicalDisk(Total)Disk Writes/sec 
    perf_counter[234(Total)214] 每秒读数据次数 
    perf_counter[234(Total)216] 每秒写数据次数

    IO吞吐率

    硬盘传输数据流的速度

    PhysicalDisk(Total)Disk Read Bytes/sec 
    PhysicalDisk(Total)Disk Write Bytes/sec 
    perf_counter[234(Total)220] 每秒读数据量 单位是bytes 
    perf_counter[234(Total)222] 每秒写数据量 单位是bytes

    磁盘使用情况

    PhysicalDisk(Total)\% Disk Time 
    perf_counter[234(Total)200] 磁盘活动时间百分比
    PhysicalDisk(Total)% Disk Read Time 
    perf_counter[234(Total)202] 磁盘读数据占用的时间百分比 
    PhysicalDisk(Total)% Disk Write Time 
    perf_counter[234(Total)204] 磁盘写入数据占用的时间百分比 
    PhysicalDisk(Total)% Idle Time 
    perf_counter[234(Total)1746]磁盘空闲时间百分比

    IO队列

    PhysicalDisk(Total)Avg. Disk Read Queue Length 
    PhysicalDisk(Total)Avg. Disk Write Queue Length 
    perf_counter[234(Total)1402] IO 读队列 
    perf_counter[234(Total)1404] IO写队列
  • 相关阅读:
    移动终端app测试点总结
    Appium+Java(一) Windows环境搭建篇
    BeanShell用法汇总(部分摘抄至网络)【转】
    JVM的GC实现详解
    JVM的GC理论详解
    JVM的栈内存
    JVM的基本结构
    JVM的生命周期
    JVM的启动流程
    JVM的粗略简述
  • 原文地址:https://www.cnblogs.com/zhangcheng94/p/12186712.html
Copyright © 2020-2023  润新知