How is Disk IO calculated for Windows servers?

How is Disk IO calculated for Windows servers?

Here is how Disk IO calculation works:

We run diskio.vbs for getting DISK IO details. Here is a sample output:


diskio.vbs

Microsoft (R) Windows Script Host Version 5.8

Copyright (C) Microsoft Corporation. All rights reserved. 

PHYDISK^0 C: D: E: F:^0^13^13^0.016^0.562 

PHYDISK^1 J:^0^0^0^0.000^0


Busy time Calculation

IdleTime = (100 * (IdleTime2 - IdleTime1) / (TimeBase2 - TimeBase1))

Where IdleTime = Percentage of disk Idle time.

Busytime(%) = 100 - IdleTime(%)

                    New to ADSelfService Plus?

                      • Related Articles

                      • I am not getting the data for AIX Disk IO in SSH or Telnet Mode

                        We use below command for getting disk IO stats in AIX :  iostat -d;echo '-----DISK_EXTENDED_STATS-----';iostat -d 1 3 > /tmp/amp_iostat.txt;sed 's/% tm_act/%tm_act/g' /tmp/amp_iostat.txt When you execute iostat -d command you should get output as ...
                      • Windows Monitoring - FAQ

                        This Knowledge Base article provides answers to frequently asked questions related to Windows Server monitoring through WMI. The articles are categorized based on the monitoring lifecycle to help you quickly identify the relevant troubleshooting ...
                      • How to troubleshoot when having error 'No data available' for Disk IO statistics in the Novell server?

                        Novell: Possible Scenario -  I get a "No data available" message for  Disk io statistics while trying to monitor servers. Solution: The connection must be established only through TELNET or SSH mode.  Check whether the below command runs and displays ...
                      • How is CPU Core utilization calculated for Windows servers?

                        CPU Core Utilization :  The same way in CPU Utilization, we execute the below query and from the output we execute another query to get the details of CPU Core details. Select * from Win32_PerfRawData_PerfOS_Processor where Name!='_Total'  Select * ...
                      • How is Memory Utilization calculated for Windows servers?

                        Memory Calculation We run memory.vbs in WMI mode to get memory details. Here is a sample output: memory.vbs Microsoft (R) Windows Script Host Version 5.8 Copyright (C) Microsoft Corporation. All rights reserved. Type: ...