processes plugin: Renamed the selection option to `Process'.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 10 Jul 2006 18:51:57 +0000 (20:51 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 10 Jul 2006 18:51:57 +0000 (20:51 +0200)
src/collectd.conf.in
src/processes.c

index 2306b9f..7f5c75a 100644 (file)
 #      Host host.foo.bar
 #</Plugin>
 
+#<Plugin processes>
+#      Process name
+#</Plugin>
+
 #<Plugin traffic>
 #      Interface eth0
 #      IgnoreSelected false
index b5483c7..47bbcaa 100644 (file)
@@ -143,7 +143,7 @@ static int ps_pagefaults_ds_num = 2;
 
 static char *config_keys[] =
 {
-       "CollectName",
+       "Process",
        NULL
 };
 static int config_keys_num = 1;
@@ -402,7 +402,7 @@ static void ps_list_reset (void)
 
 static int ps_config (char *key, char *value)
 {
-       if (strcasecmp (key, "CollectName") == 0)
+       if (strcasecmp (key, "Process") == 0)
        {
                ps_list_register (value);
        }