Code

collectd.conf: Let the 'df' plugin ignore various file-systems by default.
authorSebastian Harl <sh@teamix.net>
Thu, 22 Nov 2012 08:59:30 +0000 (09:59 +0100)
committerSebastian 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.

debian/changelog
debian/collectd.conf

index 771eab3b802a540a3dd9db596f0b3b5bac8c71d6..811dd95e9b5cac01ff7dc4934ea3e534ec269261 100644 (file)
@@ -29,6 +29,10 @@ collectd (5.2.0-1) experimental; urgency=low
     - 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
 
index 8130154c96651fa6e366875538c500e26521bdac..9b6acea671c57ddd8e9f43ad8073f12276a097b6 100644 (file)
@@ -342,16 +342,29 @@ LoadPlugin users
 #      </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"