Anyone know what the OID is for disk queue length for Server 2003? I would like to create a custom poller for this.
Thanks!
Chuck
Hi,
The Performance Counters are only available through WMI by default.
You might want to have a look at the SNMP Informant agent if need to get values from performance counters using Custom Pollers.
Otherwise Application Performance Monitor can monitor these counters using WMI.
HTH,
Yann
By installing the APM module I will be able to monitor the performance counters? This could be good news.
WQL query should be
Select AvgDiskQueueLength
From Win32_PerfRawData_PerfDisk_PhysicalDisk
you probably already had that but thought i would toss it in here anyway.