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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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"`
}