Query Details
// Use Case: Identifying and prioritizing processes with high on-disk working set size for system resource optimization. Process | where DiskBytesRead > 50000000 or DiskBytesWritten > 50000000 | project ProcessName, ProcessId, DiskBytesRead, DiskBytesWritten | order by DiskBytesRead desc, DiskBytesWritten desc | take 5
This query is designed to identify and prioritize processes that are using a large amount of disk resources, specifically focusing on those with high on-disk working set sizes. Here's a simple breakdown of what it does:
In summary, the query helps in identifying the top 5 processes that are using the most disk resources, which can be useful for optimizing system performance.

Ugur Koc
Released: December 13, 2024
Tables
Keywords
Operators