summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d1a8471)
raw | patch | inline | side by side (parent: d1a8471)
author | Sebastian Harl <sh@teamix.net> | |
Thu, 22 Nov 2012 08:59:30 +0000 (09:59 +0100) | ||
committer | Sebastian Harl <sh@teamix.net> | |
Thu, 22 Nov 2012 08:59:30 +0000 (09:59 +0100) |
Ignore 'rootfs' (else, the root file-system would appear twice, causing one of
the updates to fail and spam the log) and the usual virtual / temporary
file-systems.
the updates to fail and spam the log) and the usual virtual / temporary
file-systems.
debian/changelog | patch | blob | history | |
debian/collectd.conf | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index 771eab3b802a540a3dd9db596f0b3b5bac8c71d6..811dd95e9b5cac01ff7dc4934ea3e534ec269261 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
- Install the collectd (daemon) headers to /usr/include/collectd/core/
rather than /usr/include/collectd/. The latter is used by
libcollectdclient which causes file conflicts.
+ * debian/collectd.conf:
+ - Let the 'df' plugin ignore 'rootfs' (else, the root file-system would
+ appear twice, causing one of the updates to fail and spam the log) and
+ the usual virtual / temporary file-systems.
-- Sebastian Harl <tokkee@debian.org> Tue, 20 Nov 2012 15:40:12 +0100
diff --git a/debian/collectd.conf b/debian/collectd.conf
index 8130154c96651fa6e366875538c500e26521bdac..9b6acea671c57ddd8e9f43ad8073f12276a097b6 100644 (file)
--- a/debian/collectd.conf
+++ b/debian/collectd.conf
# </Database>
#</Plugin>
-#<Plugin df>
+<Plugin df>
# Device "/dev/sda1"
# Device "192.168.0.2:/mnt/nfs"
# MountPoint "/home"
# FSType "ext3"
-# IgnoreSelected false
+
+ # ignore rootfs; else, the root file-system would appear twice, causing
+ # one of the updates to fail and spam the log
+ FSType rootfs
+ # ignore the usual virtual / temporary file-systems
+ FSType sysfs
+ FSType proc
+ FSType devtmpfs
+ FSType devpts
+ FSType tmpfs
+ FSType fusectl
+ FSType cgroup
+ IgnoreSelected true
+
# ReportByDevice false
# ReportReserved false
# ReportInodes false
-#</Plugin>
+</Plugin>
#<Plugin disk>
# Disk "hda"