]> git.hungrycats.org Git - bees/commitdiff
docs: event counter updates after readahead sanity improvements
authorZygo Blaxell <bees@furryterror.org>
Wed, 27 Nov 2024 03:23:55 +0000 (22:23 -0500)
committerZygo Blaxell <bees@furryterror.org>
Sun, 1 Dec 2024 04:30:33 +0000 (23:30 -0500)
Signed-off-by: Zygo Blaxell <bees@furryterror.org>
docs/event-counters.md

index c78c11d675920e9e452454d11643f2a46643be92..51b73f74fc31a922711627f0c6eb5b4df4491d14 100644 (file)
@@ -264,7 +264,9 @@ readahead
 
 The `readahead` event group consists of events related to calls to `posix_fadvise`.
 
- * `readahead_ms`: Total time spent running `posix_fadvise(..., POSIX_FADV_WILLNEED)` aka `readahead()`.
+ * `readahead_clear`: Number of times the duplicate read cache was cleared.
+ * `readahead_skip`: Number of times a duplicate read was identified in the cache and skipped.
+ * `readahead_ms`: Total time spent emulating readahead in user-space (kernel readahead is not measured).
  * `readahead_unread_ms`: Total time spent running `posix_fadvise(..., POSIX_FADV_DONTNEED)`.
 
 replacedst