-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcessIoLogEntry.cs
More file actions
23 lines (23 loc) · 846 Bytes
/
Copy pathProcessIoLogEntry.cs
File metadata and controls
23 lines (23 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace IoMonitor
{
/// <summary>
/// Aggregated process activity waiting to be written to CSV.
/// </summary>
internal sealed class ProcessIoLogEntry
{
public int Pid { get; init; }
public string Name { get; set; } = string.Empty;
public long ReadBytes { get; set; }
public long WriteBytes { get; set; }
public long TotalRead { get; set; }
public long TotalWrite { get; set; }
public int HandleCount { get; set; }
public long ReadOps { get; set; }
public long WriteOps { get; set; }
public long WorkingSet { get; set; }
public string IoPattern { get; set; } = string.Empty;
public bool IsActive { get; set; }
public bool IsSystem { get; set; }
public string DriveLetter { get; set; } = string.Empty;
}
}