diff --git a/plugins/inputs/system/ps.go b/plugins/inputs/system/ps.go
index 979a3b164572962b00d8d29a64467db02012687b..d41e6bddfc7bc7764696d4dce42464c0d911b1a6 100644
--- a/plugins/inputs/system/ps.go
+++ b/plugins/inputs/system/ps.go
@@ -85,6 +85,11 @@ func (s *systemPS) DiskUsage(
 		fstypeExcludeSet[filter] = true
 	}
 
+	// Autofs mounts indicate a potential mount, the partition will also be
+	// listed with the actual filesystem when mounted.  Ignore the autofs
+	// partition to avoid triggering a mount.
+	fstypeExcludeSet["autofs"] = true
+
 	var usage []*disk.UsageStat
 	var partitions []*disk.PartitionStat