There was an error while loading. Please reload this page.
2 parents 309b93b + 63963e9 commit 3e4a8c6Copy full SHA for 3e4a8c6
1 file changed
modules/CheckSystem/check_kernel_memory.hpp
@@ -23,7 +23,7 @@ struct kernel_memory_obj {
23
long long cache; // Cache Bytes (system file cache working set)
24
double page_faults; // Page Faults/sec (soft + hard; huge on healthy hosts)
25
double transition_faults; // Transition Faults/sec (the dominant soft-fault kind)
26
- double hard_faults; // Pages Input/sec (faults that had to hit disk)
+ double hard_faults; // Page Reads/sec (hard-fault events that had to hit disk)
27
28
kernel_memory_obj() : pool_paged(0), pool_nonpaged(0), cache(0), page_faults(0.0), transition_faults(0.0), hard_faults(0.0) {}
29
0 commit comments