Skip to content

Commit

Permalink
Add iso9660 to telegraf disk input ignore_fs (influxdata#5800)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwiesen authored and danielnelson committed May 6, 2019
1 parent 901c50b commit 1e1fa1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/inputs/disk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/inputs/disk/disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1e1fa1a

Please sign in to comment.