-
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
Metricbeat option to ignore NFS auto-mount #4685
Comments
It looks like we already have the filesystem types internally from when we query The same filter would also need to be applied to the |
Add `filesystem.ignore_types` to the system module for ignoring filesystems in the `filesystem` and `fsstat` metricsets. The new configuration option accepts a list of filesystem types. metricbeat.modules: - module: system metricsets: [filesystem, fsstat] filesystem.ignore_types: [nfs, smbfs, proc, cgroups] Closes elastic#4685
* Add filesystem.ignore_types to ignore filesystem types Add `filesystem.ignore_types` to the system module for ignoring filesystems in the `filesystem` and `fsstat` metricsets. The new configuration option accepts a list of filesystem types. metricbeat.modules: - module: system metricsets: [filesystem, fsstat] filesystem.ignore_types: [nfs, smbfs, proc, cgroups] Closes #4685 * Address doc review comments
* Add filesystem.ignore_types to ignore filesystem types Add `filesystem.ignore_types` to the system module for ignoring filesystems in the `filesystem` and `fsstat` metricsets. The new configuration option accepts a list of filesystem types. metricbeat.modules: - module: system metricsets: [filesystem, fsstat] filesystem.ignore_types: [nfs, smbfs, proc, cgroups] Closes elastic#4685 (cherry picked from commit 70caf0e)
Branches with the feature:
|
* Add filesystem.ignore_types to ignore filesystem types Add `filesystem.ignore_types` to the system module for ignoring filesystems in the `filesystem` and `fsstat` metricsets. The new configuration option accepts a list of filesystem types. metricbeat.modules: - module: system metricsets: [filesystem, fsstat] filesystem.ignore_types: [nfs, smbfs, proc, cgroups] Closes #4685 (cherry picked from commit 70caf0e)
…elastic#4906) * Add filesystem.ignore_types to ignore filesystem types Add `filesystem.ignore_types` to the system module for ignoring filesystems in the `filesystem` and `fsstat` metricsets. The new configuration option accepts a list of filesystem types. metricbeat.modules: - module: system metricsets: [filesystem, fsstat] filesystem.ignore_types: [nfs, smbfs, proc, cgroups] Closes elastic#4685 (cherry picked from commit aa54a22)
#4918) * Add filesystem.ignore_types to ignore filesystem types Add `filesystem.ignore_types` to the system module for ignoring filesystems in the `filesystem` and `fsstat` metricsets. The new configuration option accepts a list of filesystem types. metricbeat.modules: - module: system metricsets: [filesystem, fsstat] filesystem.ignore_types: [nfs, smbfs, proc, cgroups] Closes #4685 (cherry picked from commit aa54a22)
…elastic#4906) (elastic#4918) * Add filesystem.ignore_types to ignore filesystem types Add `filesystem.ignore_types` to the system module for ignoring filesystems in the `filesystem` and `fsstat` metricsets. The new configuration option accepts a list of filesystem types. metricbeat.modules: - module: system metricsets: [filesystem, fsstat] filesystem.ignore_types: [nfs, smbfs, proc, cgroups] Closes elastic#4685 (cherry picked from commit 575483a)
With drop_event.when.regexp.mount_point set, metricbeat does not send stats for those filtered out file systems, but it still touches them keeping mount points active. Eventually systems started to have thousands of mount points causing input/output errors for new workers. Need a setting like ignore_nfs_automount. Metricbeat will NOT touch nfs automounts at all, so the mount point timeout can kick in.
The text was updated successfully, but these errors were encountered: