zoukankan      html  css  js  c++  java
  • 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写队列
  • 相关阅读:
    DockerFile构建步骤及命令
    linux安装nginx及常用命令
    docker常用命令
    Docker安装
    获取TrustedInstaller权限
    获取本机公网ip的url地址
    centOS7配置ip
    VS Code配置c语言环境
    Linux l 2.4.20-8 # 溢出
    VMware Destination Host Unreachable
  • 原文地址:https://www.cnblogs.com/zhangcheng94/p/12186712.html
Copyright © 2011-2022 走看看