src/configfile.c: Enable the "Globals" flag for the "DotNet" plugin, too. ff/dotnet
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 30 Dec 2010 07:21:20 +0000 (08:21 +0100)
committerFlorian Forster <octo@collectd.org>
Thu, 5 Apr 2012 08:22:03 +0000 (10:22 +0200)
src/collectd.conf.pod
src/configfile.c

index 5fee0d0..4467061 100644 (file)
@@ -83,8 +83,9 @@ See the documentation of those plugins (e.g., L<collectd-perl(5)> or
 L<collectd-python(5)>) for details.
 
 By default, this is disabled. As a special exception, if the plugin name is
-either C<perl> or C<python>, the default is changed to enabled in order to keep
-the average user from ever having to deal with this low level linking stuff.
+either C<dotnet>, C<perl> or C<python>, the default is changed to enabled in
+order to keep the average user from ever having to deal with this low level
+linking stuff.
 
 =back
 
index 4fe50cc..ee33163 100644 (file)
@@ -264,7 +264,8 @@ static int dispatch_loadplugin (const oconfig_item_t *ci)
         * So in order to save everyone's sanity use a different default for a
         * handful of special plugins. --octo
         */
-       if ((strcasecmp ("Perl", name) == 0)
+       if ((strcasecmp ("DotNet", name) == 0)
+                       || (strcasecmp ("Perl", name) == 0)
                        || (strcasecmp ("Python", name) == 0))
                flags |= PLUGIN_FLAGS_GLOBAL;