df plugin: Remove the "ReportReserved" config option.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 5 Jul 2010 18:08:04 +0000 (20:08 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 5 Jul 2010 18:08:04 +0000 (20:08 +0200)
src/collectd.conf.pod
src/df.c

index 2cfa196..d7cad07 100644 (file)
@@ -994,22 +994,6 @@ Report using the device name rather than the mountpoint. i.e. with this I<false>
 (the default), it will report a disk as "root", but with it I<true>, it will be
 "sda1" (or whichever).
 
-=item B<ReportReserved> B<true>|B<false>
-
-When enabled, the blocks reserved for root are reported separately. When
-disabled (the default for backwards compatibility reasons) the reserved space
-will be included in the "free" space.
-
-When disabled, the "df" type will be used to store "free" and "used" space. The
-mount point or disk name (see option B<ReportByDevice>) is used as type
-instance in this case (again: backwards compatibility).
-
-When enabled, the type "df_complex" is used and three files are created. The
-mount point or disk name is used as plugin instance and the type instance is
-set to "free", "reserved" and "used" as appropriate.
-
-Enabling this option is recommended.
-
 =item B<ReportInodes> B<true>|B<false>
 
 Enables or disables reporting of free, reserved and used inodes. Defaults to
index 61d0c28..a96b79e 100644 (file)
--- a/src/df.c
+++ b/src/df.c
@@ -120,11 +120,6 @@ static int df_config (const char *key, const char *value)
 
                return (0);
        }
-       else if (strcasecmp (key, "ReportReserved") == 0)
-       {
-               /* Nop for backwards compatibility. */
-               return (0);
-       }
        else if (strcasecmp (key, "ReportInodes") == 0)
        {
                if (IS_TRUE (value))