Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
830f3e9
Implement DiskStatsReader
makazeu May 4, 2025
18288a0
Add a UT
makazeu May 5, 2025
d727f7c
Merge branch 'main' into ImplementDiskIoMetricsForLinux
makazeu May 5, 2025
9dfd1ab
Add LinuxDiskMetrics
makazeu May 5, 2025
b4bfd43
Add DiskOperation and DiskIoTime metrics for Linux
makazeu May 5, 2025
a179ef3
update
makazeu May 6, 2025
1fb860b
Merge branch 'main' into ImplementDiskIoMetricsForLinux
makazeu May 10, 2025
39c9c70
Add more tests
makazeu May 11, 2025
37b3a20
Add UT
makazeu May 11, 2025
097cba4
Added more tests
makazeu May 11, 2025
8322d41
Merge branch 'main' into ImplementDiskIoMetricsForLinux
makazeu May 11, 2025
e60a07c
Merge branch 'refs/heads/main' into ImplementDiskIoMetricsForLinux
makazeu May 15, 2025
4e67000
Update src/Libraries/Microsoft.Extensions.Diagnostics.ResourceMonitor…
makazeu May 15, 2025
846ecc3
Change ulong properties to uint in DiskStats and DiskStatsReader for …
makazeu May 15, 2025
c56fd4b
Merge remote-tracking branch 'origin/ImplementDiskIoMetricsForLinux' …
makazeu May 15, 2025
555b327
update
makazeu May 15, 2025
a972b87
Merge branch 'refs/heads/main' into ImplementDiskIoMetricsForLinux
makazeu May 27, 2025
b61db2f
Rename `EnableDiskIoMetrics` to `EnableSystemDiskIoMetrics`
makazeu May 27, 2025
7e112fb
Add compatibility suppressions for EnableDiskIoMetrics
makazeu May 31, 2025
f7063cf
Add compatibility suppressions for EnableDiskIoMetrics
makazeu May 31, 2025
633fb1c
Merge branch 'main' into ImplementDiskIoMetricsForLinux
makazeu May 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ public static partial void CounterMessage110(
long counterValue);

[LoggerMessage(7, LogLevel.Warning,
"Error getting disk stats: Error={errorMessage}")]
"Error while getting disk stats: Error={errorMessage}")]
public static partial void HandleDiskStatsException(ILogger logger, string errorMessage);
}