Skip to content
Snippets Groups Projects
Commit df98aeff authored by Andreas Hamacher's avatar Andreas Hamacher
Browse files

Merge branch 'fix-telegraf-disk' into 'master'

Update telegraf input.disk config to exclude nfs4

See merge request !368
parents 1a2e8924 e1622565
No related branches found
No related tags found
1 merge request!368Update telegraf input.disk config to exclude nfs4
......@@ -99,13 +99,13 @@
# Read metrics about disk usage by mount point
[[inputs.disk]]
{% if 'ComputeNodes' in group_names %}
{% if 'ComputeNodes' in group_names %}
interval = "60s"
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "overlay", "aufs", "squashfs", "nfsv4"]
{% endif %}
{% if 'LoginNodes' in group_names %}
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "overlay", "aufs", "squashfs", "nfsv4", "nfs4"]
{% endif %}
{% if 'LoginNodes' in group_names %}
interval = "60s"
{% endif %}
{% endif %}
# By default, telegraf gather stats for all mountpoints.
# Setting mountpoints will restrict the stats to the specified mountpoints.
# mount_points=["/"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment