-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOCS] Metricbeat: Document unavailable
and unknown
as filesystem.ignore_types
values
#36946
[DOCS] Metricbeat: Document unavailable
and unknown
as filesystem.ignore_types
values
#36946
Conversation
…m.ignore_types` values
To ignore unavailable volumes, such as CD-ROM drives, include `unavailable` as a | ||
value in the array. To ignore unknown filesystems, include `unknown` as a value | ||
in the array. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@elastic/elastic-agent-data-plane Let me know if can elaborate more here. It seems a bit thin at the moment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where does this documentation for the unavailable
and unknown
values come from? I don't see anything on linux that specifically handles those values. If that's something that's only available on windows, we should specify that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for calling this out. I've updated the text to note that the values only applies to Windows here: 51636bb
Here are links to the related code:
https://github.com/elastic/gosigar/blob/master/sys/windows/syscall_windows.go#L349
https://github.com/andrewkroh/beats/blob/cbdba8aa1645a896023e387b370b5b88960f3176/metricbeat/module/system/filesystem/helper.go#L179C38-L179C46
I couldn't find the source for unknown
but it seems to a common value based on #35187
…m.ignore_types` values (elastic#36946) Documents `unavailable` and `unknown` as valid values for the `filesystem.ignore_types` array. Also adds a related example. Closes elastic#35187.
Documents
unavailable
andunknown
as valid values for thefilesystem.ignore_types
array. Also adds a related example.Closes #35187.