Add iso9660 to telegraf disk input ignore_fs (#5800)

This commit is contained in:
matthewwiesen 2019-05-06 16:06:22 -04:00 committed by Daniel Nelson
parent 901c50b9d4
commit 1e1fa1a580
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ https://en.wikipedia.org/wiki/Df_(Unix) for more details.
# mount_points = ["/"]
## Ignore mount points by filesystem type.
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "overlay", "aufs", "squashfs"]
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"]
```
#### Docker container

View File

@ -29,7 +29,7 @@ var diskSampleConfig = `
# mount_points = ["/"]
## Ignore mount points by filesystem type.
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "overlay", "aufs", "squashfs"]
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"]
`
func (_ *DiskStats) SampleConfig() string {