-
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
Document unknown
as filesystem.ignore_types
metricbeat configuration value
#35187
Comments
Pinging @elastic/obs-docs (Team:Docs) |
Just FYI: I think you meant |
I've used this in MetricBeat's - module: system
# ...
filesystem.ignore_types:
- unavailable
- unknown
# ... |
I am seeing a similar message in the agent metrics data collected by the Elastic Agent for my Windows servers. Is there a way to suppress this error when these are managed by a Fleet server? |
Yes. You can put unknown and/or unavailable in the "ignore filesystem" option of the system integration that is assigned to your agent policy. |
We would like to be added to this request as well. |
Thanks @bczifra. I've opened #36946 to address the missing docs and close this issue. @NateUT99 Your issue seems to be related to elastic/integrations#7703. Essentially, there's a bug in the UI that prevents you from setting |
…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.
Describe the enhancement:
In elastic/gosigar#164, https://github.com/elastic/gosigar/blob/v0.14.2/sys/windows/syscall_windows.go#L345-L360 was modified to ignore an error from GetVolumeInformationW system call and return
unavailable
as the file system type.This can result in metricbeat logging this error:
This error can be filtered out by specifying:
It would be helpful to document this in https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-metricset-system-filesystem.html .
The text was updated successfully, but these errors were encountered: