We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77451ed commit b09d41bCopy full SHA for b09d41b
cmd/agent.go
@@ -197,7 +197,7 @@ func reportMetrics(hostname string) error {
197
// Send metrics for each disk partition
198
for _, part := range parts {
199
// Skip pseudo filesystems
200
- if part.Fstype == "devfs" || part.Fstype == "autofs" || part.Fstype == "nullfs" ||
+ if part.Fstype == "devfs" || part.Fstype == "autofs" || part.Fstype == "nullfs" || part.Fstype == "squashfs" ||
201
strings.HasPrefix(part.Fstype, "fuse.") ||
202
strings.Contains(part.Mountpoint, "/System/Volumes") {
203
continue
0 commit comments