Fix setting mount_points option in disk input (#5982)

(cherry picked from commit 8a34d2b27d)
This commit is contained in:
Daniel Nelson
2019-06-12 11:11:35 -07:00
parent 60902768f1
commit 75ea990b09
+2 -2
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"`
}