diff --git a/monitoring/unit/disk.go b/monitoring/unit/disk.go index f164859..423a9ed 100644 --- a/monitoring/unit/disk.go +++ b/monitoring/unit/disk.go @@ -85,6 +85,10 @@ func isPhysicalDisk(part disk.PartitionStat) bool { } fstype := strings.ToLower(part.Fstype) + // 针对 Linux 下通过 ntfs-3g 挂载的 NTFS 分区 (fuseblk),这是实际物理磁盘,不应排除 + if fstype == "fuseblk" { + return true + } var fstypeToExclude = []string{ "tmpfs", "devtmpfs",