Hi, I am using "Select AvgDiskSecPerWrite from Win32_PerfFormattedData_PerfDisk_LogicalDisk where Name='D:'" to get the seconds per write operation on the disk, the returned value is something like 0.0012, Orion seems to just convert this to 0.00...
Is there a way I can multiply this value to make it from seconds to miliseconds?
I tried "Select AvgDiskSecPerWrite * 1000 from Win32_PerfFormattedData_PerfDisk_LogicalDisk where Name='D:'" but that doesn't work.