Fix setting mount_points option in disk input (#5982)

This commit is contained in:
Daniel Nelson
2019-06-12 10:52:04 -07:00
committed by GitHub
parent 5de7bdf906
commit 8a34d2b27d

View File

@@ -13,9 +13,9 @@ type DiskStats struct {
ps system.PS
// Legacy support
Mountpoints []string
Mountpoints []string `toml:"mountpoints"`
MountPoints []string
MountPoints []string `toml:"mount_points"`
IgnoreFS []string `toml:"ignore_fs"`
}