Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Proposed commit message
closes #32026
So, the linux kernel will truncate page counts over 100k:
https://github.com/torvalds/linux/blob/e5b3efbe1ab1793bb49ae07d56d0973267e65112/mm/vmstat.c#L1521-L1528
We weren't handling this previously, so the metricset would just error out on the string
>100000
, as it didn't match the provided regex.This fixes that, and also adds a log line and bit of documentation to clarify how it works.
As the attached issue notes, this is a bit of a hard problem to solve "properly" as attempting to get creative and supplement data from
/proc/buddyinfo
instead will almost certainly result in misaligned data.Checklist
CHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.