Disk latency too high

How can we help?
< All Topics
Print

If read- or write latency is above 1 second, an alert will be thrown.

To see servers where the disk latency is too high:

select f.*
from dbo.v_fileio_stats f
where f.avg_read_latency_ms > 1000 or f.avg_write_latency_ms > 1000
Table of Contents